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