blob: 411e4154af1cab8a37f7868b357aedf8482388ba [file] [log] [blame]
Guido van Rossumecde7811995-03-28 13:35:14 +00001\chapter{String Services}
2
3The modules described in this chapter provide a wide range of string
4manipulation operations. Here's an overview:
5
6\begin{description}
7
8\item[string]
9--- Common string operations.
10
Guido van Rossum6d659b31998-02-11 22:57:10 +000011\item[re]
12--- New Perl-style regular expression search and match operations.
13
Guido van Rossumecde7811995-03-28 13:35:14 +000014\item[regex]
15--- Regular expression search and match operations.
16
17\item[regsub]
18--- Substitution and splitting operations that use regular expressions.
19
20\item[struct]
21--- Interpret strings as packed binary data.
22
Guido van Rossum38e2ec41997-03-03 16:03:05 +000023\item[StringIO]
24--- Read and write strings as if they were files.
25
Guido van Rossum6d659b31998-02-11 22:57:10 +000026\item[soundex]
27--- Compute hash values for English words.
28
Guido van Rossumecde7811995-03-28 13:35:14 +000029\end{description}