You might be looking for the times combinator. You can either use times with a single Int (meaning repeat the rule exactly n times) or with an (Int, Int) (meaning repeat the rule between n and m times). You can use times together with oneOrMore, zeroOrMore, ~, and ! for the desired effects:
//Matches regex "a{n,}"
rule {
n.times("a") ~ zeroOrMore("a") //match on n "a"s followed by zero or more "a"s (so at least n "a"s)
}
//Matches regex "a{,m}"
rule {
!(m.times("a") ~ oneOrMore("a")) //do not match on m "a"s followed by one or more "a" (so at most m "a"s)
}
//Matches regex "a{n, m)"
rule {
(n to m).times("a") ~ EOI
}
You might be looking for the
times
combinator. You can either usetimes
with a singleInt
(meaning repeat the rule exactlyn
times) or with an(Int, Int)
(meaning repeat the rule betweenn
andm
times). You can usetimes
together withoneOrMore
,zeroOrMore
,~
, and!
for the desired effects: