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 MatchReverse(T[], int?)- Declared in: RT.Generexes.GenerexBase<T, TMatch, TGenerex, TGenerexMatch>
Declarationpublic TGenerexMatch MatchReverse(
T[] input,
int? endAt = null
) Summary
Determines whether the given input sequence matches this regular expression, and if so, returns information
about the first match found by matching the regular expression backwards (starting from the end of the input
sequence). ParametersT[] | input |
Input sequence to match the regular expression against. | int? | endAt |
Optional index at which to end the search. Matches that end at or after this index are not included. |
Returns
An object describing a regular expression match in case of success; null if no match. |