Replace(input, replaceWith, startAt, maxReplace) Replace(input, replaceWith, startAt, maxReplace) ThenExpect(exceptionGenerator, comparer, elements) ThenExpect(exceptionGenerator, comparer, elements) Throw(exceptionGenerator)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Method: TGenerexMatch MatchExact(T[], int, int?)- Declared in: RT.Generexes.GenerexBase<T, TMatch, TGenerex, TGenerexMatch>
Declarationpublic TGenerexMatch MatchExact(
T[] input,
int mustStartAt = 0,
int? mustEndAt = null
) Summary
Determines whether the given input sequence matches this regular expression exactly, and if so, returns
information about the match. ParametersT[] | input |
Input sequence to match the regular expression against. | int | mustStartAt |
Index at which the match must start (default is 0). | int? | mustEndAt |
Index at which the match must end (default is the end of the input sequence). |
Returns
An object describing the regular expression match in case of success; null if no match. |