Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TGenerexMatch Match(T[], int)

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

Declaration

public TGenerexMatch Match(
    T[] input,
    int startAt = 0
)

Summary

Determines whether the given input sequence matches this regular expression, and if so, returns information about the first match.

Parameters

T[]input Input sequence to match the regular expression against.
intstartAt Optional index at which to start the search. Matches that start before this index are not included.

Returns

An object describing a regular expression match in case of success; null if no match.