fastparse
fastparse copied to clipboard
A very simple and stupid parser, based on a statemachine and regular expressions.
Results
2
fastparse issues
Sort by
recently updated
recently updated
newest added
I'm trying to use fastparse with a regex that contains backreferences. Here's a very simplified example: ``` ("|')foo\1 ``` However, since Fastparse joins all regexes of one state like `(regex1)|(regex2)|(("|')foo\1)`...