regexper-static
regexper-static copied to clipboard
Regular Expression Visualization Site (static site version) -- migrated to https://gitlab.com/javallone/regexper-static
positive lookahead is works fine, but positive lookbehind will get error: > Error: Line 1: expected "?" > (? ^
Hi, When using a recursive regex symbol `?R`, the parser fails to understand it. More details on recursion : http://www.rexegg.com/regex-recursion.html Would it be possible to add it ? Thanks :)
I added support for Unicode categories, as listed on [this site](http://www.regular-expressions.info/unicode.html#category), e.g. `\p{P}` for punctuation or `\p{Cherokee}` for Cherokee characters. I'm not sure how you would actually want to do...
Currently, the site only displays JavaScript-style regular expressions. These do not support the same set of features as other regexp flavors like PCRE.