Is there a parser like plus() that has an upper boundary, to model expressions like Item <- [a-zA-Z0-9]{1,5}
?
Similarly for something like Item <- [a-zA-Z0-9]{3,5}
?
Is there a parser like plus() that has an upper boundary, to model expressions like Item <- [a-zA-Z0-9]{1,5}
?
Similarly for something like Item <- [a-zA-Z0-9]{3,5}
?
Copyright © 2021 Jogjafile Inc.
Yes, the
repeat
operator does that:Check the JavaDoc for additional information.