nitely / nim-regex

Pure Nim regex engine. Guarantees linear time matching
https://nitely.github.io/nim-regex/
MIT License
225 stars 20 forks source link

Strict reps #96

Closed nitely closed 3 years ago

nitely commented 3 years ago

Changes:

(a+)+, (a*)*, etc are allowed. Disallowing the contiguous double reps make the NFA graph easier to work with, that's the only reason for this change really.