0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Doc/lib/libstrings.tex

31 lines
660 B
TeX
Raw Normal View History

\chapter{String Services}
1998-02-18 16:40:11 +01:00
\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.
1998-02-11 23:57:10 +01:00
\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.
1997-03-03 17:03:05 +01:00
\item[StringIO]
--- Read and write strings as if they were files.
1998-02-11 23:57:10 +01:00
\item[soundex]
--- Compute hash values for English words.
\end{description}