-
Notifications
You must be signed in to change notification settings - Fork 243
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
anyOf is not matched requirements #59
Comments
Can't see why your variant better than original |
@lanwen It 's ridiculous to list all the Word char and all digit char in the sring parameter in the anyOf method. |
lib already has use with |
No. Please tell me how to use verbalExpressions to represent this regex: [a-k\s\d,]+ |
You can use raw regex if it looks more compact |
I think java regex is more readable than verbal expressions. VE is too awkward to use it. |
In some cases it's true! VE is mostly for those who don't know how to type simple regex. Or where you should write something that should be human-readable (for example in tests). |
It's some late, but I think with an indentation it can be better:
You are right, sometimes regex is better than ve, principally for those who know regex enough. But we have a lot of thing to improve our code, whatever we use. |
How can JavaVerbalExpressions build a simple regex like this: [\d,]+
It 's too ugly! How about this one: [a-k\s\d,]+ ?
It would be nice to add a anyOf method that can used like this:
The text was updated successfully, but these errors were encountered: