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