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