Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TResult RawMatch(T[], int)

Declaration

public TResult RawMatch(
    T[] input,
    int startAt = 0
)

Summary

Determines whether the given input sequence matches this regular expression, and if so, returns the result of 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

The result of the first match in case of success; default(TResult) if no match.