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
any quantifier following single \b (boundary pattern) should show syntax error Nothing to repeat
Nothing to repeat
ParseRegExp<'\\b+'> // should show syntax error // or ParseRegExp<'\\b*'> // should show syntax error
but (\b)? should match empty stirng
(\b)?
MatchRegExp<'123', ParseRegExp<'(\\b)+'>, never> // MatchResult<[''], '123', never>
The text was updated successfully, but these errors were encountered:
didavid61202
No branches or pull requests
Issue
any quantifier following single \b (boundary pattern) should show syntax error
Nothing to repeat
but
(\b)?
should match empty stirngThe text was updated successfully, but these errors were encountered: