racket-peg icon indicating copy to clipboard operation
racket-peg copied to clipboard

add quantifier repetition

Open petrolifero opened this issue 5 years ago • 18 comments

to write something like password <- [a-zA-Z0-9]{8}[a-zA-Z0-9]* ; to the password has minimun length of 8. or a <- [a-z]{8,10} to between 8 and 10 char.

or a <- [a-z]{8,} without upper limit, with the semantics of minimun of 8

petrolifero avatar Sep 14 '18 14:09 petrolifero