Declaration
public TGenerex Repeat(
int min,
int max
)Summary
Returns a regular expression that matches this regular expression any number of times within specified
boundaries. Fewer times are prioritised (cf.
{min,max}? in traditional regular expression syntax).
Parameters
| int | min |
Minimum number of times to match. |
| int | max |
Maximum number of times to match. |
Exceptions
- System.ArgumentOutOfRangeException
min is negative.
- System.ArgumentException
max is smaller than min.