grex 1.0.0
Finally, the first stable release 1.0.0 is there. :-)
Features
- conversion to character classes
\d,\D,\s,\S,\w,\Wis now supported - repetition detection now works with arbitrarily nested expressions. Input strings such as
aaabaaabwhich were previously converted to^(aaab){2}$are now converted to^(a{3}b){2}$. - optional syntax highlighting for the produced regular expressions can now be enabled using the
--colorizecommand-line flag or with the library methodRegExpBuilder.with_syntax_highlighting()
Test Coverage
- new unit tests, integration tests and property tests have been added