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: bool IsMatchAt(T[], int)- Declared in: RT.Generexes.GenerexBase<T, TMatch, TGenerex, TGenerexMatch>
Declarationpublic bool IsMatchAt(
T[] input,
int mustStartAt = 0
) Summary
Determines whether the given input sequence matches this regular expression at a specific index. ParametersT[] | input |
Input sequence to match the regular expression against. | int | mustStartAt |
Index at which the match must start (default is 0). |
Returnstrue if a match starting at the specified index exists (which need not run all the way to the end of
the sequence); otherwise, false . |