RegexMatch Method (String, Int32) |
Searches the input string for the first occurrence of a regular expression,
beginning at the specified starting position in the string.
Namespace: System.Text.RegularExpressionsAssembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax public Match Match(
string input,
int startat
)
Parameters
- input
- Type: SystemString
The string to search for a match. - startat
- Type: SystemInt32
The zero-based character position at which to start the search.
Return Value
Type:
MatchAn object that contains information about the match.
See Also