Bowen7 / regex-vis

🎨 Regex visualizer & editor
https://regex-vis.com
MIT License
3.78k stars 279 forks source link

Backreference followup fixed quantifier #128

Closed ReiFan49 closed 3 months ago

ReiFan49 commented 4 months ago

Given expression of (.){1}(?:\1{1})(?:\1{2,})(?:.{3}) image 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.