~ubuntu-branches/ubuntu/maverick/python3.1/maverick

« back to all changes in this revision

Viewing changes to Doc/library/strings.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-03-23 00:01:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090323000127-5fstfxju4ufrhthq
Tags: upstream-3.1~a1+20090322
ImportĀ upstreamĀ versionĀ 3.1~a1+20090322

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
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.
 
16
 
 
17
 
 
18
.. toctree::
 
19
 
 
20
   string.rst
 
21
   re.rst
 
22
   struct.rst
 
23
   difflib.rst
 
24
   textwrap.rst
 
25
   codecs.rst
 
26
   unicodedata.rst
 
27
   stringprep.rst
 
28