Declaration
protected TManyGenerex repeatMin<TManyGenerex, TManyGenerexMatch>(
int min,
bool greedy
)
Summary
Returns a regular expression that matches this regular expression the specified number of times or more.
Generic type parameters
TManyGenerex | This type parameter is not documented. |
TManyGenerexMatch | This type parameter is not documented. |
Parameters
int | min |
Minimum number of times the regular expression must match. |
bool | greedy | true to prioritise longer matches (“greedy” matching); false to prioritise shorter matches
(“non-greedy” matching). |
Exceptions
- System.ArgumentOutOfRangeException
min is negative.