Releases: skordal/ada-regex
Releases · skordal/ada-regex
Seventh Release
- Added support for the $ operator
- Added utility function to escape regex operators in strings
Sixth Release v0.6
- Support using
\t
to match tab characters
Fifth Release v0.5
- Improved performance
Fourth Release
- Adds support for matching newlines in regexes
- Adds an ID to acceptance nodes
- Adds possibility for compiling syntax trees into regex objects directly
Version 0.3
Third Release
- Now a shared library is created when building instead of a static library.
- Fixed a segmentation fault when running unit tests.
- Changed the version number in the project file.
Second release
Supports the most important regular expression features.
- Supported operators: *, +, ?
- Support for matching character ranges
- Separate packages for working with syntax trees and state machines generated by the regular expression parser
First release
Features:
- Allows checking if a string matches a pattern.
- Contains functionality to print the generated syntax tree and state machine for a regular expression, which gives fascinating insight into how regular expressions work