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
[\w-#]
[ !"#0-9A-Z_a-z]
Joni interprets [\w-#] as [ !"#0-9A-Z_a-z] in both default syntax and Java syntax. Java Pattern interprets it as [-0-9A-Z_a-z].
[-0-9A-Z_a-z]
An addition question: in general, is it considered a bug if interpretation doesn't match Java pattern when syntax is set to Java?
The text was updated successfully, but these errors were encountered:
Yes, if the Java dialect does not match Java pattern behavior, we should fix that.
Sorry, something went wrong.
No branches or pull requests
Joni interprets
[\w-#]
as[ !"#0-9A-Z_a-z]
in both default syntax and Java syntax. Java Pattern interprets it as[-0-9A-Z_a-z]
.An addition question: in general, is it considered a bug if interpretation doesn't match Java pattern when syntax is set to Java?
The text was updated successfully, but these errors were encountered: