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
If I enter in the following regex and subject then the capture list on the right doesn't update and the javascript console reports a panic: Regex:
(?:a(b+)c)|(b+)d
Subject:
abc bbd
This same regex and subject work as expected in the rust playground.
Either of (?:a(b+)c) or (b+)d work as expected in rustexp, and (?:a(b+)c)(b+)d even works too.
(?:a(b+)c)
(b+)d
(?:a(b+)c)(b+)d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I enter in the following regex and subject then the capture list on the right doesn't update and the javascript console reports a panic:
Regex:
Subject:
This same regex and subject work as expected in the rust playground.
Either of
(?:a(b+)c)
or(b+)d
work as expected in rustexp, and(?:a(b+)c)(b+)d
even works too.The text was updated successfully, but these errors were encountered: