Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: bool IsMatchUpTo(string, int?)

Declaration

public bool IsMatchUpTo(
    string input,
    int? mustEndAt = null
)

Summary

Determines whether the given string matches this regular expression up to a specific character index.

Parameters

stringinput String to match the regular expression against.
int?mustEndAt Index at which the match must end (default is the end of the string).

Returns

true if a match ending at the specified index exists (which need not begin at the start of the string); otherwise, false.