Skip to content
New issue

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

Do not support {n, m} feature. #81

Open
cmtheit opened this issue Aug 31, 2022 · 1 comment
Open

Do not support {n, m} feature. #81

cmtheit opened this issue Aug 31, 2022 · 1 comment

Comments

@cmtheit
Copy link

cmtheit commented Aug 31, 2022

Regex is [a-z][a-z0-9]{0, 10},
Match string is "cmtheit",
Do not match.

@mickjc750
Copy link

Testing this on https://regex101.com/
Your Regex appears to be broken by the space after the ,
Instead of:
[a-z][a-z0-9]{0, 10}
try:
[a-z][a-z0-9]{0,10}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants