Declaration
protected TManyGenerex repeatBetween<TManyGenerex, TManyGenerexMatch>(
int min,
int max,
bool greedy
)
Summary
Returns a regular expression that matches this regular expression any number of times within specified
boundaries.
Generic type parameters
TManyGenerex | This type parameter is not documented. |
TManyGenerexMatch | This type parameter is not documented. |
Parameters
int | min |
Minimum number of times to match. |
int | max |
Maximum number of times to match. |
bool | greedy | true to prioritise longer matches (“greedy” matching); false to prioritise shorter matches
(“non-greedy” matching). |
Exceptions
- System.ArgumentOutOfRangeException
min is negative.
- System.ArgumentException
max is smaller than min.