We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue extracted from #21.
E.g. ruby does this:
/\1()/.match?('foo') # => false
but the resulting js regex, with the same source, produces a zero-length match on any string.
The text was updated successfully, but these errors were encountered:
A few other examples of regexes that include nonparticipating capturing groups:
(\1)
(a)|b\1
(?<n>a)|(?<n>)\k<n>
Might include a nonparticipating capturing group:
(a)?b\1
((a)|b)+\2
Never includes a nonparticipating capturing group:
(a?)b\1
Sorry, something went wrong.
No branches or pull requests
Issue extracted from #21.
E.g. ruby does this:
but the resulting js regex, with the same source, produces a zero-length match on any string.
The text was updated successfully, but these errors were encountered: