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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
like "color=(?:red|green|blue)"
you end up generating ?:red instead of just red
@ val test = new Generex("color=(?:red|green|blue)") test: Generex = com.mifmif.common.regex.Generex@459d81f1 @ test.random res36: String = "color=green" @ test.random res37: String = "color=?:red" <<<---- BUG (should be color=red) @ test.random res38: String = "color=blue"
https://regex101.com/r/XelPbS/2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
like "color=(?:red|green|blue)"
you end up generating ?:red instead of just red
https://regex101.com/r/XelPbS/2
The text was updated successfully, but these errors were encountered: