Declaration
public static TResult? RawMatchNullable<TResult>(
this Stringerex<TResult> stringerex,
string input,
int startAt = 0
)Summary
Determines whether the given input string matches this regular expression, and if so, returns the result of
the first match; otherwise, returns
null.
Generic type parameters
| TResult | This type parameter is not documented. |
Parameters
| this Stringerex<TResult> | stringerex |
The current regular expression. |
| string | input |
Input string to match the regular expression against. |
| int | startAt |
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;
null if no match.