Staging
v0.5.1
https://github.com/python/cpython
Revision 4d856ee652e76b6b8cdba5ae624e226ac03065d7 authored by Guido van Rossum on 10 April 1998, 17:59:44 UTC, committed by Guido van Rossum on 10 April 1998, 17:59:44 UTC
1 parent 327aff7
Raw File
Tip revision: 4d856ee652e76b6b8cdba5ae624e226ac03065d7 authored by Guido van Rossum on 10 April 1998, 17:59:44 UTC
Added Tabcheck flag.
Tip revision: 4d856ee
libstrings.tex
\chapter{String Services}
\label{strings}

The modules described in this chapter provide a wide range of string
manipulation operations.  Here's an overview:

\begin{description}

\item[string]
--- Common string operations.

\item[re]
--- New Perl-style regular expression search and match operations.

\item[regex]
--- Regular expression search and match operations.

\item[regsub]
--- Substitution and splitting operations that use regular expressions.

\item[struct]
--- Interpret strings as packed binary data.

\item[StringIO]
--- Read and write strings as if they were files.

\item[soundex]
--- Compute hash values for English words.

\end{description}
back to top