Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: IEnumerable<TGenerexMatch> MatchesReverse(T[], int?)

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

Declaration

public IEnumerable<TGenerexMatch> MatchesReverse(
    T[] input,
    int? endAt = null
)

Summary

Returns a sequence of non-overlapping regular expression matches going backwards (starting at the end of the specified input sequence), optionally starting the search at the specified index.

Parameters

T[]input Input sequence to match the regular expression against.
int?endAt Optional index at which to begin the reverse search. Matches that end at or after this index are not included.