Updated Articles and Resources
Sign Up for our Free Newsletters
Thanks, You're in!
Python Categories
Python Essentials
Recent Articles in: Python
Python RegEx Examples
Here is a glossary of symbols and phrases that you can use when forming regular expressions in Python.. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z "
data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg">
Share
Parenthetical Compounds
Here is a glossary of symbols and phrases that you can use when forming regular expressions in Python.. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z "
data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg">
Share
Python Regular Expression Glossary
Here is a glossary of symbols and phrases that you can use when forming regular expressions in Python.. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z"
data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg">
Share
String Locations
Here is a glossary of symbols and phrases that you can use when forming regular expressions in Python.. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
Back to the main index of this glossary
. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
Back to the main index of this glossary" data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg"> Share
Back to the main index of this glossary" data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg"> Share
Python Jobs
Python programmers tend to be a pretty happy bunch. They tend not to switch jobs very often. Whether you have just learned Python or are a seasoned veteran programmer, these jobs will be of interest to you. I have categorised the searches according to the categories of this site. Happy hunting!Grouping and Alternating
Here is a glossary of symbols and phrases that you can use when forming regular expressions in Python.. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
Back to the main index of this glossary
. | ^ | $ | * | + | ? | *? | +? | ?? | {m} | {m,n} | {m,n}? | \ | [] | | | (..) | (?iLmsux) | (?:..) | (?P<name>..) | (?P=name) | (?#..) | (?=..) | (?!..) | (?<=..) | (?<!..) | \A | \b | \B | \d | \D | \s | \S | \w | \W | \Z
Back to the main index of this glossary" data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg"> Share
Back to the main index of this glossary" data-socialimage="http://f.tqn.com/y/default/compute/S/149625589.jpg"> Share
Modules
Modules are small pieces of pre-written Python code that you can import into your programs. Using the 'import' command, you can effectively "cut and paste" all or part of a module. Regardless of whether the module is from the Python library or another program, the computer does not see a difference between the module and your program.
View More

