Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: bool IsMatchReverse(T[], int?)

  • Declared in: RT.Generexes.GenerexBase<T, TMatch, TGenerex, TGenerexMatch>

Declaration

public bool IsMatchReverse(
    T[] input,
    int? endAt = null
)

Summary

Determines whether the given input sequence contains a match for this regular expression that ends before the specified maximum index.

Parameters

T[]input Input sequence to match the regular expression against.
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.