forked from MagicStack/MagicPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquantifiers1.re
More file actions
18 lines (15 loc) · 821 Bytes
/
quantifiers1.re
File metadata and controls
18 lines (15 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
^a+b*c?d*?e+?f??$
^ : source.regexp.python, support.other.match.begin.regexp
a : source.regexp.python
+ : keyword.operator.quantifier.regexp, source.regexp.python
b : source.regexp.python
* : keyword.operator.quantifier.regexp, source.regexp.python
c : source.regexp.python
? : keyword.operator.quantifier.regexp, source.regexp.python
d : source.regexp.python
*? : keyword.operator.quantifier.regexp, source.regexp.python
e : source.regexp.python
+? : keyword.operator.quantifier.regexp, source.regexp.python
f : source.regexp.python
?? : keyword.operator.quantifier.regexp, source.regexp.python
$ : source.regexp.python, support.other.match.end.regexp