Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: IEnumerable<TResult> RawMatchesReverse(string, int?)

Declaration

public IEnumerable<TResult> RawMatchesReverse(
    string input,
    int? endAt = null
)

Summary

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

Parameters

stringinput 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. (Default is the end of the input string.)