|
|
||
|
> - Character class followed by {n,m}, which matches n or more until m
> ocurrences of the character class. When m is ommited, it matches exactly n
> characters.
You can emulate that building the pattern:
strrep(pat, n) .. strrep(pat..'?', (m or n) - n)
-- Roberto