Changes
Jump to navigation
Jump to search
← Older edit
Newer edit →
Python: Regex
(edit)
Revision as of 12:59, 12 February 2020
1,827 bytes added
,
12:59, 12 February 2020
m
no edit summary
Line 1:
Line 1:
+
== Quick Reference ==
+
+
=== All ===
+
{| class="wikitable"
+
|+
+
!Token
+
!Description
+
|-
+
|\n
+
|Newline
+
|-
+
|\r
+
|Carriage return
+
|-
+
|\0
+
|Null character
+
|-
+
|A single character of: a, b, or c
+
|[abc]
+
|-
+
|A character except: a, b, c
+
|[^a,b,c]
+
|-
+
|A character in the range a-z
+
|[a-z]
+
|-
+
|A character not in the range a-z
+
|[^a-z]
+
|-
+
|A character in the range a-z or A-Z
+
|[a-zA-Z]
+
|-
+
|Any single character
+
|.
+
|-
+
|Any whitespace character
+
|\s
+
|-
+
|Any non-whitespace character
+
|\S
+
|-
+
|any digit
+
|\d
+
|-
+
|Any non-digit
+
|\D
+
|-
+
|Any word character
+
|\w
+
|-
+
|Any non-word character
+
|\W
+
|-
+
|Vertical whitespace character
+
|\v
+
|-
+
|Match nth subpattern
+
|\n
+
|-
+
|Hex character YY
+
|\xYY
+
|-
+
|Octal character ddd
+
|\ddd
+
|-
+
|Backspace character
+
|[\b]
+
|-
+
|Makes any character literal
+
|\
+
|-
+
|Capture everything enclosed
+
|(...)
+
|-
+
|Match either a or b
+
|<nowiki>(a|b)</nowiki>
+
|-
+
|Match everything enclosed
+
|(?:...)
+
|-
+
|Comment
+
|(?#...)
+
|-
+
|Named Capturing Group
+
|(?P<name>...)
+
|-
+
|Inline modifiers
+
|(?imsxXU)
+
|-
+
|Conditional statement
+
|<nowiki>(?(1)yes|no)</nowiki>
+
|-
+
|Match subpattern `name`
+
|(?P=name)
+
|-
+
|Positive Lookahead
+
|(?=...)
+
|-
+
|Negative Lookahead
+
|(?!...)
+
|-
+
|Positive Lookbehind
+
|(?<...)
+
|-
+
|Negative Lookbehind
+
|(?<!...)
+
|-
+
|Zero or one of a
+
|a?
+
|-
+
|Zero or more of a
+
|a*
+
|-
+
|One or more of a
+
|a+
+
|-
+
|Exatly 3 of a
+
|a{3}
+
|-
+
|Between 3 and 6 of a
+
|a{3, 6}
+
|-
+
|Greedy quantifier
+
|a*
+
|-
+
|Lazy quantifier
+
|a*?
+
|-
+
|Start of string
+
|^
+
|-
+
|End of string
+
|$
+
|-
+
|Start of string
+
|\A
+
|-
+
|End of string
+
|\Z
+
|-
+
|A word boundary
+
|\b
+
|-
+
|A word boundary with postgres
+
|\y
+
|-
+
|A non word boundary
+
|\b
+
|-
+
|A non word boundary with postgres
+
|\Y
+
|-
+
|Global
+
|g
+
|-
+
|Multiline
+
|m
+
|-
+
|Case insensitive
+
|i
+
|-
+
|Ignore whitespace
+
|x
+
|-
+
|Single line
+
|s
+
|-
+
|Enable unicode support
+
|u
+
|-
+
|Restrict matches to ASCII only
+
|a
+
|-
+
|Complete match contents
+
|\g<0>
+
|}
+
+
== Examples ==
+
===Port===
===Port===
<source lang="python">port_regex = re.compile(r'\b('
<source lang="python">port_regex = re.compile(r'\b('
Rafahsolis
Bureaucrats
,
Administrators
2,306
edits
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
Variants
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
Special pages
Printable version