blob: dfb272ff059211bfe25a14931a44f33f97fccf6a [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2.. _stringservices:
3
4***************
5String Services
6***************
7
8The modules described in this chapter provide a wide range of string
9manipulation operations.
10
Georg Brandl4b491312007-08-31 09:22:56 +000011In addition, Python's built-in string classes support the sequence type methods
12described in the :ref:`typesseq` section, and also the string-specific methods
13described in the :ref:`string-methods` section. To output formatted strings,
14see the :ref:`string-formatting` section. Also, see the :mod:`re` module for
15string functions based on regular expressions.
Georg Brandl116aa622007-08-15 14:28:22 +000016
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