René's URL Explorer Experiment
go
Title:
6. String Services — Python v3.2.6 documentation
direct link
Domain:
docs.python.org
None
text/html; charset=utf-8
Links
:
index
https://docs.python.org/3.2/genindex.html
modules
https://docs.python.org/3.2/py-modindex.html
next
https://docs.python.org/3.2/library/string.html
previous
https://docs.python.org/3.2/library/exceptions.html
Python
http://www.python.org/
3.2.6 Documentation
https://docs.python.org/3.2/index.html
The Python Standard Library
https://docs.python.org/3.2/library/index.html
¶
https://docs.python.org/3.2/library/strings.html#string-services
Sequence Types — str, bytes, bytearray, list, tuple, range
https://docs.python.org/3.2/library/stdtypes.html#typesseq
String Methods
https://docs.python.org/3.2/library/stdtypes.html#string-methods
String Formatting
https://docs.python.org/3.2/library/string.html#string-formatting
re
https://docs.python.org/3.2/library/re.html#module-re
6.1. string — Common string operations
https://docs.python.org/3.2/library/string.html
6.1.1. String constants
https://docs.python.org/3.2/library/string.html#string-constants
6.1.2. String Formatting
https://docs.python.org/3.2/library/string.html#string-formatting
6.1.3. Format String Syntax
https://docs.python.org/3.2/library/string.html#format-string-syntax
6.1.3.1. Format Specification Mini-Language
https://docs.python.org/3.2/library/string.html#format-specification-mini-language
6.1.3.2. Format examples
https://docs.python.org/3.2/library/string.html#format-examples
6.1.4. Template strings
https://docs.python.org/3.2/library/string.html#template-strings
6.1.5. Helper functions
https://docs.python.org/3.2/library/string.html#helper-functions
6.2. re — Regular expression operations
https://docs.python.org/3.2/library/re.html
6.2.1. Regular Expression Syntax
https://docs.python.org/3.2/library/re.html#regular-expression-syntax
6.2.2. Module Contents
https://docs.python.org/3.2/library/re.html#module-contents
6.2.3. Regular Expression Objects
https://docs.python.org/3.2/library/re.html#regular-expression-objects
6.2.4. Match Objects
https://docs.python.org/3.2/library/re.html#match-objects
6.2.5. Regular Expression Examples
https://docs.python.org/3.2/library/re.html#regular-expression-examples
6.2.5.1. Checking for a Pair
https://docs.python.org/3.2/library/re.html#checking-for-a-pair
6.2.5.2. Simulating scanf()
https://docs.python.org/3.2/library/re.html#simulating-scanf
6.2.5.3. search() vs. match()
https://docs.python.org/3.2/library/re.html#search-vs-match
6.2.5.4. Making a Phonebook
https://docs.python.org/3.2/library/re.html#making-a-phonebook
6.2.5.5. Text Munging
https://docs.python.org/3.2/library/re.html#text-munging
6.2.5.6. Finding all Adverbs
https://docs.python.org/3.2/library/re.html#finding-all-adverbs
6.2.5.7. Finding all Adverbs and their Positions
https://docs.python.org/3.2/library/re.html#finding-all-adverbs-and-their-positions
6.2.5.8. Raw String Notation
https://docs.python.org/3.2/library/re.html#raw-string-notation
6.2.5.9. Writing a Tokenizer
https://docs.python.org/3.2/library/re.html#writing-a-tokenizer
6.3. struct — Interpret bytes as packed binary data
https://docs.python.org/3.2/library/struct.html
6.3.1. Functions and Exceptions
https://docs.python.org/3.2/library/struct.html#functions-and-exceptions
6.3.2. Format Strings
https://docs.python.org/3.2/library/struct.html#format-strings
6.3.2.1. Byte Order, Size, and Alignment
https://docs.python.org/3.2/library/struct.html#byte-order-size-and-alignment
6.3.2.2. Format Characters
https://docs.python.org/3.2/library/struct.html#format-characters
6.3.2.3. Examples
https://docs.python.org/3.2/library/struct.html#examples
6.3.3. Classes
https://docs.python.org/3.2/library/struct.html#classes
6.4. difflib — Helpers for computing deltas
https://docs.python.org/3.2/library/difflib.html
6.4.1. SequenceMatcher Objects
https://docs.python.org/3.2/library/difflib.html#sequencematcher-objects
6.4.2. SequenceMatcher Examples
https://docs.python.org/3.2/library/difflib.html#sequencematcher-examples
6.4.3. Differ Objects
https://docs.python.org/3.2/library/difflib.html#differ-objects
6.4.4. Differ Example
https://docs.python.org/3.2/library/difflib.html#differ-example
6.4.5. A command-line interface to difflib
https://docs.python.org/3.2/library/difflib.html#a-command-line-interface-to-difflib
6.5. textwrap — Text wrapping and filling
https://docs.python.org/3.2/library/textwrap.html
6.6. codecs — Codec registry and base classes
https://docs.python.org/3.2/library/codecs.html
6.6.1. Codec Base Classes
https://docs.python.org/3.2/library/codecs.html#codec-base-classes
6.6.1.1. Codec Objects
https://docs.python.org/3.2/library/codecs.html#codec-objects
6.6.1.2. IncrementalEncoder Objects
https://docs.python.org/3.2/library/codecs.html#incrementalencoder-objects
6.6.1.3. IncrementalDecoder Objects
https://docs.python.org/3.2/library/codecs.html#incrementaldecoder-objects
6.6.1.4. StreamWriter Objects
https://docs.python.org/3.2/library/codecs.html#streamwriter-objects
6.6.1.5. StreamReader Objects
https://docs.python.org/3.2/library/codecs.html#streamreader-objects
6.6.1.6. StreamReaderWriter Objects
https://docs.python.org/3.2/library/codecs.html#streamreaderwriter-objects
6.6.1.7. StreamRecoder Objects
https://docs.python.org/3.2/library/codecs.html#streamrecoder-objects
6.6.2. Encodings and Unicode
https://docs.python.org/3.2/library/codecs.html#encodings-and-unicode
6.6.3. Standard Encodings
https://docs.python.org/3.2/library/codecs.html#standard-encodings
6.6.4. encodings.idna — Internationalized Domain Names in Applications
https://docs.python.org/3.2/library/codecs.html#module-encodings.idna
6.6.5. encodings.mbcs — Windows ANSI codepage
https://docs.python.org/3.2/library/codecs.html#module-encodings.mbcs
6.6.6. encodings.utf_8_sig — UTF-8 codec with BOM signature
https://docs.python.org/3.2/library/codecs.html#module-encodings.utf_8_sig
6.7. unicodedata — Unicode Database
https://docs.python.org/3.2/library/unicodedata.html
6.8. stringprep — Internet String Preparation
https://docs.python.org/3.2/library/stringprep.html
5. Built-in Exceptions
https://docs.python.org/3.2/library/exceptions.html
6.1. string — Common string operations
https://docs.python.org/3.2/library/string.html
Report a Bug
https://docs.python.org/3.2/bugs.html
Show Source
https://docs.python.org/3.2/_sources/library/strings.txt
index
https://docs.python.org/3.2/genindex.html
modules
https://docs.python.org/3.2/py-modindex.html
next
https://docs.python.org/3.2/library/string.html
previous
https://docs.python.org/3.2/library/exceptions.html
Python
http://www.python.org/
3.2.6 Documentation
https://docs.python.org/3.2/index.html
The Python Standard Library
https://docs.python.org/3.2/library/index.html
Copyright
https://docs.python.org/3.2/copyright.html
Please donate.
http://www.python.org/psf/donations/
Found a bug
https://docs.python.org/3.2/bugs.html
Sphinx
http://sphinx.pocoo.org/
URLs of
crawlers that visited me
.