Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: bool IsMatchReverse(string, int?)

Declaration

public bool IsMatchReverse(
    string input,
    int? endAt = null
)

Summary

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

Parameters

stringinput String 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 string.