René's URL Explorer Experiment
go
Title:
7. String Services — Python 2.7.18 documentation
direct link
Domain:
docs.python.org
Links
:
no longer supported
https://devguide.python.org/devcycle/#end-of-life-branches
Python documentation for the current stable release
https://docs.python.org/3/library/strings.html
index
https://docs.python.org/2/genindex.html
modules
https://docs.python.org/2/py-modindex.html
next
https://docs.python.org/2/library/string.html
previous
https://docs.python.org/2/library/exceptions.html
Python
https://www.python.org/
Python 2.7.18 documentation
https://docs.python.org/2/index.html
The Python Standard Library
https://docs.python.org/2/library/index.html
¶
https://docs.python.org/2/library/strings.html#string-services
Sequence Types — str, unicode, list, tuple, bytearray, buffer, xrange
https://docs.python.org/2/library/stdtypes.html#typesseq
String Methods
https://docs.python.org/2/library/stdtypes.html#string-methods
String Formatting Operations
https://docs.python.org/2/library/stdtypes.html#string-formatting
re
https://docs.python.org/2/library/re.html#module-re
7.1. string — Common string operations
https://docs.python.org/2/library/string.html
7.1.1. String constants
https://docs.python.org/2/library/string.html#string-constants
7.1.2. Custom String Formatting
https://docs.python.org/2/library/string.html#custom-string-formatting
7.1.3. Format String Syntax
https://docs.python.org/2/library/string.html#format-string-syntax
7.1.3.1. Format Specification Mini-Language
https://docs.python.org/2/library/string.html#format-specification-mini-language
7.1.3.2. Format examples
https://docs.python.org/2/library/string.html#format-examples
7.1.4. Template strings
https://docs.python.org/2/library/string.html#template-strings
7.1.5. String functions
https://docs.python.org/2/library/string.html#string-functions
7.1.6. Deprecated string functions
https://docs.python.org/2/library/string.html#deprecated-string-functions
7.2. re — Regular expression operations
https://docs.python.org/2/library/re.html
7.2.1. Regular Expression Syntax
https://docs.python.org/2/library/re.html#regular-expression-syntax
7.2.2. Module Contents
https://docs.python.org/2/library/re.html#module-contents
7.2.3. Regular Expression Objects
https://docs.python.org/2/library/re.html#regular-expression-objects
7.2.4. Match Objects
https://docs.python.org/2/library/re.html#match-objects
7.2.5. Examples
https://docs.python.org/2/library/re.html#examples
7.2.5.1. Checking For a Pair
https://docs.python.org/2/library/re.html#checking-for-a-pair
7.2.5.2. Simulating scanf()
https://docs.python.org/2/library/re.html#simulating-scanf
7.2.5.3. search() vs. match()
https://docs.python.org/2/library/re.html#search-vs-match
7.2.5.4. Making a Phonebook
https://docs.python.org/2/library/re.html#making-a-phonebook
7.2.5.5. Text Munging
https://docs.python.org/2/library/re.html#text-munging
7.2.5.6. Finding all Adverbs
https://docs.python.org/2/library/re.html#finding-all-adverbs
7.2.5.7. Finding all Adverbs and their Positions
https://docs.python.org/2/library/re.html#finding-all-adverbs-and-their-positions
7.2.5.8. Raw String Notation
https://docs.python.org/2/library/re.html#raw-string-notation
7.3. struct — Interpret strings as packed binary data
https://docs.python.org/2/library/struct.html
7.3.1. Functions and Exceptions
https://docs.python.org/2/library/struct.html#functions-and-exceptions
7.3.2. Format Strings
https://docs.python.org/2/library/struct.html#format-strings
7.3.2.1. Byte Order, Size, and Alignment
https://docs.python.org/2/library/struct.html#byte-order-size-and-alignment
7.3.2.2. Format Characters
https://docs.python.org/2/library/struct.html#format-characters
7.3.2.3. Examples
https://docs.python.org/2/library/struct.html#examples
7.3.3. Classes
https://docs.python.org/2/library/struct.html#classes
7.4. difflib — Helpers for computing deltas
https://docs.python.org/2/library/difflib.html
7.4.1. SequenceMatcher Objects
https://docs.python.org/2/library/difflib.html#sequencematcher-objects
7.4.2. SequenceMatcher Examples
https://docs.python.org/2/library/difflib.html#sequencematcher-examples
7.4.3. Differ Objects
https://docs.python.org/2/library/difflib.html#differ-objects
7.4.4. Differ Example
https://docs.python.org/2/library/difflib.html#differ-example
7.4.5. A command-line interface to difflib
https://docs.python.org/2/library/difflib.html#a-command-line-interface-to-difflib
7.5. StringIO — Read and write strings as files
https://docs.python.org/2/library/stringio.html
7.6. cStringIO — Faster version of StringIO
https://docs.python.org/2/library/stringio.html#module-cStringIO
7.7. textwrap — Text wrapping and filling
https://docs.python.org/2/library/textwrap.html
7.8. codecs — Codec registry and base classes
https://docs.python.org/2/library/codecs.html
7.8.1. Codec Base Classes
https://docs.python.org/2/library/codecs.html#codec-base-classes
7.8.1.1. Codec Objects
https://docs.python.org/2/library/codecs.html#codec-objects
7.8.1.2. IncrementalEncoder Objects
https://docs.python.org/2/library/codecs.html#incrementalencoder-objects
7.8.1.3. IncrementalDecoder Objects
https://docs.python.org/2/library/codecs.html#incrementaldecoder-objects
7.8.1.4. StreamWriter Objects
https://docs.python.org/2/library/codecs.html#streamwriter-objects
7.8.1.5. StreamReader Objects
https://docs.python.org/2/library/codecs.html#streamreader-objects
7.8.1.6. StreamReaderWriter Objects
https://docs.python.org/2/library/codecs.html#streamreaderwriter-objects
7.8.1.7. StreamRecoder Objects
https://docs.python.org/2/library/codecs.html#streamrecoder-objects
7.8.2. Encodings and Unicode
https://docs.python.org/2/library/codecs.html#encodings-and-unicode
7.8.3. Standard Encodings
https://docs.python.org/2/library/codecs.html#standard-encodings
7.8.4. Python Specific Encodings
https://docs.python.org/2/library/codecs.html#python-specific-encodings
7.8.5. encodings.idna — Internationalized Domain Names in Applications
https://docs.python.org/2/library/codecs.html#module-encodings.idna
7.8.6. encodings.utf_8_sig — UTF-8 codec with BOM signature
https://docs.python.org/2/library/codecs.html#module-encodings.utf_8_sig
7.9. unicodedata — Unicode Database
https://docs.python.org/2/library/unicodedata.html
7.10. stringprep — Internet String Preparation
https://docs.python.org/2/library/stringprep.html
7.11. fpformat — Floating point conversions
https://docs.python.org/2/library/fpformat.html
6. Built-in Exceptions
https://docs.python.org/2/library/exceptions.html
7.1. string — Common string operations
https://docs.python.org/2/library/string.html
Show Source
https://docs.python.org/2/_sources/library/strings.rst.txt
index
https://docs.python.org/2/genindex.html
modules
https://docs.python.org/2/py-modindex.html
next
https://docs.python.org/2/library/string.html
previous
https://docs.python.org/2/library/exceptions.html
Python
https://www.python.org/
Python 2.7.18 documentation
https://docs.python.org/2/index.html
The Python Standard Library
https://docs.python.org/2/library/index.html
Copyright
https://docs.python.org/2/copyright.html
Please donate.
https://www.python.org/psf/donations/
Found a bug
https://docs.python.org/2/bugs.html
Sphinx
http://sphinx.pocoo.org/
URLs of
crawlers that visited me
.