Regular expressions (Regex) are patterns that match character combinations in strings.
Regexes can be utilized as a powerful mechanism for solving string-matching problems and are supported by all modern programming languages.
This project provides a library in python that generates regular expressions with functional abstractions hiding all the complexities of reading and writing regexes.
This library enables end users to write Regex without being burdened by the complexities of the symbols of the Regex.
- Design a regex builder that makes reading and writing regex easy.
- Provide abstractions so that no one has to remember regex syntax.
- Make Regex understandable, shareable, and built at runtime.
Our documentation can be found here.
Use the following command to install RegEx Generator.
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps regexgenerator