Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TManyGenerex repeatMin<TManyGenerex, TManyGenerexMatch>(int, bool)

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
  • Must derive from: RT.Generexes.GenerexWithResultBase<T, System.Collections.Generic.IEnumerable<TResult>, TManyGenerex, TManyGenerexMatch>.
This type parameter is not documented.
TManyGenerexMatch
  • Must derive from: RT.Generexes.GenerexMatch<T, System.Collections.Generic.IEnumerable<TResult>>.
This type parameter is not documented.

Parameters

intmin Minimum number of times the regular expression must match.
boolgreedytrue to prioritise longer matches (“greedy” matching); false to prioritise shorter matches (“non-greedy” matching).

Exceptions

  • System.ArgumentOutOfRangeException
    min is negative.