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

15 lines
612 B
ReasonML

^a{10}b{,10}c{10,}d{10,100}$
^ : source.regexp.python, support.other.match.begin.regexp
a : source.regexp.python
{10} : keyword.operator.quantifier.regexp, source.regexp.python
b : source.regexp.python
{,10} : keyword.operator.quantifier.regexp, source.regexp.python
c : source.regexp.python
{10,} : keyword.operator.quantifier.regexp, source.regexp.python
d : source.regexp.python
{10,100} : keyword.operator.quantifier.regexp, source.regexp.python
$ : source.regexp.python, support.other.match.end.regexp