Perl based Regexp Parser
This module parses regular expressions (regexes). Its default "grammar" is Perl 5.8.4's regex set. Grammar is quoted because the module does not so much define a grammar as let each matched node state what it expects to match next, but there is not currently a way of extracting a complete grammar. This may change in future versions.
522 views
I am thinking this might be
I am thinking this might be interesting to decipher regular expressions in code (lets say used in input validation) and then programmatically figure out ways to bypass them.
Post new comment