Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

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

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

Declaration

public bool IsMatchUpTo(
    T[] input,
    int? mustEndAt = null
)

Summary

Determines whether the given input sequence matches this regular expression up to a specific index.

Parameters

T[]input Input sequence to match the regular expression against.
int?mustEndAt Index at which the match must end (default is the end of the input sequence).

Returns

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