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