Remove outdated include; this include was breaking OS X builds using
[python.git] / Doc / library / strings.rst
blob5c8ec4bdb9a00fa9c9bc665519b7143466ab3b9b
2 .. _stringservices:
4 ***************
5 String Services
6 ***************
8 The modules described in this chapter provide a wide range of string
9 manipulation operations.
11 In addition, Python's built-in string classes support the sequence type
12 methods described in the :ref:`typesseq` section, and also the
13 string-specific methods described in the :ref:`string-methods` section.
14 To output formatted strings use template strings or the ``%`` operator
15 described in the :ref:`string-formatting` section. Also, see the
16 :mod:`re` module for string functions based on regular expressions.
19 .. toctree::
21    string.rst
22    re.rst
23    struct.rst
24    difflib.rst
25    stringio.rst
26    textwrap.rst
27    codecs.rst
28    unicodedata.rst
29    stringprep.rst
30    fpformat.rst