Closed ReiFan49 closed 3 months ago
Given expression of (.){1}(?:\1{1})(?:\1{2,})(?:.{3}) causes the parser to visualize into this.
(.){1}(?:\1{1})(?:\1{2,})(?:.{3})
Expected: both \1{1} and \1{2,} were supposed to be a limited-number of repeats, instead of having it's curly brace opening skipped.
\1{1}
\1{2,}
Given expression of
(.){1}(?:\1{1})(?:\1{2,})(?:.{3})
causes the parser to visualize into this.Expected: both
\1{1}
and\1{2,}
were supposed to be a limited-number of repeats, instead of having it's curly brace opening skipped.