Open hofi1 opened 5 months ago
Hello! Thanks for reporting this.
Please note that this is a known issue - lookaround patterns do not function properly due to design limitations. This is also mentioned in Readme - section Limitations.
Best Regards, Vlad
Describe the bug The generate function returns strings, which do not match the given RegEx
To Reproduce
for (int counter = 0; counter < 100000; counter++) { String generatedString = rgxGen.generate(rnd); System.out.println(generatedString); assertTrue(matchesParser.parse(generatedString), "String: \'" + generatedString + "\' SHOULD match the regex: " + regex); }