- Declared in: RT.Generexes.Generex<T, TResult>
Declaration
public Generex<T, IEnumerable<TResult>> RepeatGreedy(
int min,
int max
)
Summary
Returns a regular expression that matches this regular expression any number of times within specified
boundaries. More 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.