Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: bool IsMatchAt(T[], int)

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

Declaration

public bool IsMatchAt(
    T[] input,
    int mustStartAt = 0
)

Summary

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

Parameters

T[]input Input sequence to match the regular expression against.
intmustStartAt Index at which the match must start (default is 0).

Returns

true if a match starting at the specified index exists (which need not run all the way to the end of the sequence); otherwise, false.