Open Techn1c4l opened 9 months ago
Currently, when supplying a regular expression with a negative lookbehind (?<!), the library turns (?<! to ()(?<(!). By looking at the code, it seems the library doesn't support this group construct.
(?<!
()(?<(!)
Currently, when supplying a regular expression with a negative lookbehind (?<!), the library turns
(?<!
to()(?<(!)
. By looking at the code, it seems the library doesn't support this group construct.