You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is it implementation of numbered repetition support by {n} and {min,max} notation planned? It's really a basic standard in regular expressions. Thanks.
The text was updated successfully, but these errors were encountered:
I think this is easy to add, they are just a syntactical sugar over this
P{n} is PPP..... n times
P{n,} is P{n}P*
P{n, m} is P{n}P?P?P?.... ? m-n times
P{0,} is P*
P{1,} is P+
So, they are not really necessary, because they don't do that kind of black wizardry stuff...
Hi, is it implementation of numbered repetition support by {n} and {min,max} notation planned? It's really a basic standard in regular expressions. Thanks.
The text was updated successfully, but these errors were encountered: