whimax07 / MaxRegex

My attempted to write the start of a regex system. Prompted by a Q on LeetCode. It is also to help understand compilers a bit more.
0 stars 0 forks source link

Add greedy *. #1

Open whimax07 opened 2 years ago

whimax07 commented 2 years ago

I believe the way I have implemented the operator means that is it lazy. Therefore as almost every implementation of is default greedy I would like to add this.

whimax07 commented 2 years ago

See issue #10 .