Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _stringservices: |
| 2 | |
| 3 | *************** |
| 4 | String Services |
| 5 | *************** |
| 6 | |
| 7 | The modules described in this chapter provide a wide range of string |
| 8 | manipulation operations. |
| 9 | |
Georg Brandl | 4b49131 | 2007-08-31 09:22:56 +0000 | [diff] [blame] | 10 | In addition, Python's built-in string classes support the sequence type methods |
| 11 | described in the :ref:`typesseq` section, and also the string-specific methods |
| 12 | described in the :ref:`string-methods` section. To output formatted strings, |
| 13 | see the :ref:`string-formatting` section. Also, see the :mod:`re` module for |
| 14 | string functions based on regular expressions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 15 | |
| 16 | |
| 17 | .. toctree:: |
| 18 | |
| 19 | string.rst |
| 20 | re.rst |
| 21 | struct.rst |
| 22 | difflib.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 23 | textwrap.rst |
| 24 | codecs.rst |
| 25 | unicodedata.rst |
| 26 | stringprep.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | |