Toy regular expression library.
- Any-character matching
.
- Basic repetitions
*
,+
,?
- Non-greedy repetitions
*?
,+?
,??
- Capturing groups
- Non-capturing groups
(?:)
- ASCII character sets like
[a-z]
- Counted-repetitions like
a{3,5}
🚧 Work in Progress 🚧
See the benchmark
branch for details.