solorice/vscodium/extensions/magicstack.magicpython-1.1.1/test/regexp/quantifiers1.re
2022-04-28 21:17:01 +03:00

19 lines
821 B
ReasonML

^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