blob: ec4834b8c4103a1c34df9c400e91480413bbe26b [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
11\item[regex]
12--- Regular expression search and match operations.
13
14\item[regsub]
15--- Substitution and splitting operations that use regular expressions.
16
17\item[struct]
18--- Interpret strings as packed binary data.
19
Guido van Rossum38e2ec41997-03-03 16:03:05 +000020\item[StringIO]
21--- Read and write strings as if they were files.
22
Guido van Rossumecde7811995-03-28 13:35:14 +000023\end{description}