In RE2 compatibility mode, regexp2 supports Python-style named capture groups (eg. (?P<name>re)). But there doesn't appear to be support for Python-style named backreferences (eg. (?P=name)).
Do you have any plans to support those? More info here. Thanks!
In RE2 compatibility mode,
regexp2
supports Python-style named capture groups (eg.(?P<name>re)
). But there doesn't appear to be support for Python-style named backreferences (eg.(?P=name)
).Do you have any plans to support those? More info here. Thanks!