Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: a6d12ef0480e19d9b61bc461406a0d22aaa1ff87 authored by Georg Brandl on 13 February 2011, 10:00:57 UTC
Bump for 3.2rc3.
Tip revision: a6d12ef
strings.rst
.. _stringservices:

***************
String Services
***************

The modules described in this chapter provide a wide range of string
manipulation operations.

In addition, Python's built-in string classes support the sequence type methods
described in the :ref:`typesseq` section, and also the string-specific methods
described in the :ref:`string-methods` section.  To output formatted strings,
see the :ref:`string-formatting` section. Also, see the :mod:`re` module for
string functions based on regular expressions.


.. toctree::

   string.rst
   re.rst
   struct.rst
   difflib.rst
   textwrap.rst
   codecs.rst
   unicodedata.rst
   stringprep.rst

back to top