-
Notifications
You must be signed in to change notification settings - Fork 13
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
\p
is not supported (Character classes)
#73
Labels
Milestone
Comments
Documentation about categories |
curious-odd-man
added a commit
that referenced
this issue
May 23, 2023
# Conflicts: # src/main/java/com/github/curiousoddman/rgxgen/nodes/SymbolSet.java # src/main/java/com/github/curiousoddman/rgxgen/parsing/dflt/DefaultTreeBuilder.java # src/test/java/com/github/curiousoddman/rgxgen/util/UtilTests.java
curious-odd-man
added a commit
that referenced
this issue
May 23, 2023
# Conflicts: # src/main/java/com/github/curiousoddman/rgxgen/nodes/SymbolSet.java # src/main/java/com/github/curiousoddman/rgxgen/parsing/dflt/ConstantsProvider.java # src/main/java/com/github/curiousoddman/rgxgen/parsing/dflt/DefaultTreeBuilder.java
curious-odd-man
added a commit
that referenced
this issue
May 28, 2023
# Conflicts: # src/main/java/com/github/curiousoddman/rgxgen/util/Util.java
curious-odd-man
added a commit
that referenced
this issue
Jun 3, 2023
curious-odd-man
added a commit
that referenced
this issue
Jun 4, 2023
…s' into #73.Support_for_character_classes
curious-odd-man
added a commit
that referenced
this issue
Jun 10, 2023
…_classes #73. \p is not supported (Character classes)
Hello @puskarpeter ! This is now supported. I would very much like your feedback. You can use snapshot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add support for character classes specified with
\p
.new RgxGen("\\p{InBasicLatin}{0,255}").generate()
should generate an example from Unicode characters in BasicLatin class.Currently it fails with
NumberFormatException
since the expresion in{}
is treated as repetition block.Version 1.4
The text was updated successfully, but these errors were encountered: