Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 1 | \chapter{String Services} |
| 2 | |
| 3 | The modules described in this chapter provide a wide range of string |
| 4 | manipulation 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 Rossum | 38e2ec4 | 1997-03-03 16:03:05 +0000 | [diff] [blame^] | 20 | \item[StringIO] |
| 21 | --- Read and write strings as if they were files. |
| 22 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 23 | \end{description} |