René's URL Explorer Experiment


Title: 6. String Services — Python v3.2.6 documentation

direct link

Domain: docs.python.org

Nonetext/html; charset=utf-8

Links:

indexhttps://docs.python.org/3.2/genindex.html
moduleshttps://docs.python.org/3.2/py-modindex.html
nexthttps://docs.python.org/3.2/library/string.html
previoushttps://docs.python.org/3.2/library/exceptions.html
Pythonhttp://www.python.org/
3.2.6 Documentationhttps://docs.python.org/3.2/index.html
The Python Standard Libraryhttps://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, rangehttps://docs.python.org/3.2/library/stdtypes.html#typesseq
String Methodshttps://docs.python.org/3.2/library/stdtypes.html#string-methods
String Formattinghttps://docs.python.org/3.2/library/string.html#string-formatting
rehttps://docs.python.org/3.2/library/re.html#module-re
6.1. string — Common string operationshttps://docs.python.org/3.2/library/string.html
6.1.1. String constantshttps://docs.python.org/3.2/library/string.html#string-constants
6.1.2. String Formattinghttps://docs.python.org/3.2/library/string.html#string-formatting
6.1.3. Format String Syntaxhttps://docs.python.org/3.2/library/string.html#format-string-syntax
6.1.3.1. Format Specification Mini-Languagehttps://docs.python.org/3.2/library/string.html#format-specification-mini-language
6.1.3.2. Format exampleshttps://docs.python.org/3.2/library/string.html#format-examples
6.1.4. Template stringshttps://docs.python.org/3.2/library/string.html#template-strings
6.1.5. Helper functionshttps://docs.python.org/3.2/library/string.html#helper-functions
6.2. re — Regular expression operationshttps://docs.python.org/3.2/library/re.html
6.2.1. Regular Expression Syntaxhttps://docs.python.org/3.2/library/re.html#regular-expression-syntax
6.2.2. Module Contentshttps://docs.python.org/3.2/library/re.html#module-contents
6.2.3. Regular Expression Objectshttps://docs.python.org/3.2/library/re.html#regular-expression-objects
6.2.4. Match Objectshttps://docs.python.org/3.2/library/re.html#match-objects
6.2.5. Regular Expression Exampleshttps://docs.python.org/3.2/library/re.html#regular-expression-examples
6.2.5.1. Checking for a Pairhttps://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 Phonebookhttps://docs.python.org/3.2/library/re.html#making-a-phonebook
6.2.5.5. Text Munginghttps://docs.python.org/3.2/library/re.html#text-munging
6.2.5.6. Finding all Adverbshttps://docs.python.org/3.2/library/re.html#finding-all-adverbs
6.2.5.7. Finding all Adverbs and their Positionshttps://docs.python.org/3.2/library/re.html#finding-all-adverbs-and-their-positions
6.2.5.8. Raw String Notationhttps://docs.python.org/3.2/library/re.html#raw-string-notation
6.2.5.9. Writing a Tokenizerhttps://docs.python.org/3.2/library/re.html#writing-a-tokenizer
6.3. struct — Interpret bytes as packed binary datahttps://docs.python.org/3.2/library/struct.html
6.3.1. Functions and Exceptionshttps://docs.python.org/3.2/library/struct.html#functions-and-exceptions
6.3.2. Format Stringshttps://docs.python.org/3.2/library/struct.html#format-strings
6.3.2.1. Byte Order, Size, and Alignmenthttps://docs.python.org/3.2/library/struct.html#byte-order-size-and-alignment
6.3.2.2. Format Charactershttps://docs.python.org/3.2/library/struct.html#format-characters
6.3.2.3. Exampleshttps://docs.python.org/3.2/library/struct.html#examples
6.3.3. Classeshttps://docs.python.org/3.2/library/struct.html#classes
6.4. difflib — Helpers for computing deltashttps://docs.python.org/3.2/library/difflib.html
6.4.1. SequenceMatcher Objectshttps://docs.python.org/3.2/library/difflib.html#sequencematcher-objects
6.4.2. SequenceMatcher Exampleshttps://docs.python.org/3.2/library/difflib.html#sequencematcher-examples
6.4.3. Differ Objectshttps://docs.python.org/3.2/library/difflib.html#differ-objects
6.4.4. Differ Examplehttps://docs.python.org/3.2/library/difflib.html#differ-example
6.4.5. A command-line interface to difflibhttps://docs.python.org/3.2/library/difflib.html#a-command-line-interface-to-difflib
6.5. textwrap — Text wrapping and fillinghttps://docs.python.org/3.2/library/textwrap.html
6.6. codecs — Codec registry and base classeshttps://docs.python.org/3.2/library/codecs.html
6.6.1. Codec Base Classeshttps://docs.python.org/3.2/library/codecs.html#codec-base-classes
6.6.1.1. Codec Objectshttps://docs.python.org/3.2/library/codecs.html#codec-objects
6.6.1.2. IncrementalEncoder Objectshttps://docs.python.org/3.2/library/codecs.html#incrementalencoder-objects
6.6.1.3. IncrementalDecoder Objectshttps://docs.python.org/3.2/library/codecs.html#incrementaldecoder-objects
6.6.1.4. StreamWriter Objectshttps://docs.python.org/3.2/library/codecs.html#streamwriter-objects
6.6.1.5. StreamReader Objectshttps://docs.python.org/3.2/library/codecs.html#streamreader-objects
6.6.1.6. StreamReaderWriter Objectshttps://docs.python.org/3.2/library/codecs.html#streamreaderwriter-objects
6.6.1.7. StreamRecoder Objectshttps://docs.python.org/3.2/library/codecs.html#streamrecoder-objects
6.6.2. Encodings and Unicodehttps://docs.python.org/3.2/library/codecs.html#encodings-and-unicode
6.6.3. Standard Encodingshttps://docs.python.org/3.2/library/codecs.html#standard-encodings
6.6.4. encodings.idna — Internationalized Domain Names in Applicationshttps://docs.python.org/3.2/library/codecs.html#module-encodings.idna
6.6.5. encodings.mbcs — Windows ANSI codepagehttps://docs.python.org/3.2/library/codecs.html#module-encodings.mbcs
6.6.6. encodings.utf_8_sig — UTF-8 codec with BOM signaturehttps://docs.python.org/3.2/library/codecs.html#module-encodings.utf_8_sig
6.7. unicodedata — Unicode Databasehttps://docs.python.org/3.2/library/unicodedata.html
6.8. stringprep — Internet String Preparationhttps://docs.python.org/3.2/library/stringprep.html
5. Built-in Exceptionshttps://docs.python.org/3.2/library/exceptions.html
6.1. string — Common string operationshttps://docs.python.org/3.2/library/string.html
Report a Bughttps://docs.python.org/3.2/bugs.html
Show Sourcehttps://docs.python.org/3.2/_sources/library/strings.txt
indexhttps://docs.python.org/3.2/genindex.html
moduleshttps://docs.python.org/3.2/py-modindex.html
nexthttps://docs.python.org/3.2/library/string.html
previoushttps://docs.python.org/3.2/library/exceptions.html
Pythonhttp://www.python.org/
3.2.6 Documentationhttps://docs.python.org/3.2/index.html
The Python Standard Libraryhttps://docs.python.org/3.2/library/index.html
Copyrighthttps://docs.python.org/3.2/copyright.html
Please donate.http://www.python.org/psf/donations/
Found a bughttps://docs.python.org/3.2/bugs.html
Sphinxhttp://sphinx.pocoo.org/

URLs of crawlers that visited me.