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