We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 222fa9b + f702c90 commit 86ce2feCopy full SHA for 86ce2fe
cheatsheet.rst
@@ -26,6 +26,9 @@ Quantifiers::
26
{m} exactly 'm'
27
{m,n} from m to n. 'm' defaults to 0, 'n' to infinity
28
{m,n}? from m to n, as few as possible
29
+ {,1} is the same as using ?
30
+ {0,} is the same as using *
31
+ {1,} is the same as using +
32
33
Special sequences::
34
@@ -39,7 +42,6 @@ Special sequences::
39
42
\w Alphanumeric: [0-9a-zA-Z_], or is LOCALE dependant
40
43
\W Non-alphanumeric
41
44
\Z End of string
-
45
\g<id> Match previous named or numbered group,
46
e.g. \g<0> or \g<name>
47
0 commit comments