# Repetitions have the same syntax as in regexes, except that they are lazy.

'a'{1} 'b'{2} 'c'{3,} 'd'{2,4} 'e'{,4}
-----
a{1}b{2}c{3,}?d{2,4}?e{,4}?