Or(element, selector, comparer) Or(elements, selector, comparer) ThenExpect<>(expectation, selector, exceptionGenerator) ThenExpect<>(expectation, selector, exceptionGenerator)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Method: Stringerex<IEnumerable<TResult>> RepeatGreedy(int, int)Declarationpublic Stringerex<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). Parametersint | 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.
|