Match<>(input, generex, startAt) MatchExact<>(input, generex, mustStartAt, mustEndAt) New<>(comparer, elements) Not<>(comparer, elements)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: bool IsMatchReverse<T, TMatch, TGenerex, TGenerexMatch>(this T[], GenerexBase<T, TMatch, TGenerex, TGenerexMatch>, int?)Declarationpublic static bool IsMatchReverse<T, TMatch, TGenerex, TGenerexMatch>(
this T[] input,
GenerexBase<T, TMatch, TGenerex, TGenerexMatch> generex,
int? endAt = null
)Summary
Determines whether the given input sequence contains a match for this regular expression that ends before the
specified maximum index. Generic type parameters| T |
Type of the objects in the collection. | | TMatch |
See GenerexBase<T, TMatch, TGenerex, TGenerexMatch>. | | TGenerex |
See GenerexBase<T, TMatch, TGenerex, TGenerexMatch>. | | TGenerexMatch |
See GenerexBase<T, TMatch, TGenerex, TGenerexMatch>. |
Parameters| this T[] | input |
Input sequence to match the regular expression against. | | GenerexBase<T, TMatch, TGenerex, TGenerexMatch> | generex |
The regular expression to match. | | int? | endAt |
Optional index before which a match must end. The search begins by matching from this index backwards, and
then proceeds towards the start of the input sequence. |
|