Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: TResult RawMatchExact(string, int, int?)

Declaration

public TResult RawMatchExact(
    string input,
    int mustStartAt = 0,
    int? mustEndAt = null
)

Summary

Determines whether the given input string matches this regular expression exactly, and if so, returns the match.

Parameters

stringinput Input string to match the regular expression against.
intmustStartAt Index at which the match must start (default is 0).
int?mustEndAt Index at which the match must end (default is the end of the input string).

Returns

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