Closed nheitz closed 3 years ago
Hello Nicholas! Thank you for your question.
Unfortunately there is no "case insensitive" option currently. I think I can implement this in a nearest future.
Hello @nheitz. You can try SNAPSHOT release for the case-insensitive generation. The release of version 1.3 (including this implementation is planned later this year).
Ah. btw. To enable case insensitive matching use:
RgxGen rgxGen = new RgxGen("your awesome pattern");
RgxGenProperties properties = new RgxGenProperties();
RgxGenOption.CASE_INSENSITIVE.setInProperties(properties, true);
rgxGen.setProperties(properties);
amazing. Thank you very much.
This library looks like it's going to fulfill a need I have in certain cucumber tests rather nicely. Primarily I am interested in the "Not matching" string functionality...but is there any way to indicate that the constructor argument for "regex" shuld be used in a case insensitive way?