RegexMatches Method (String, Int32) |
Searches the specified input string for all occurrences 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 MatchCollection Matches(
string input,
int startat
)
Parameters
- input
- Type: SystemString
The string to search for a match. - startat
- Type: SystemInt32
The character position in the input string at which to start the search.
Return Value
Type:
MatchCollection
A collection of the System.Text.RegularExpressions.Match objects found by
the search. If no matches are found, the method returns an empty collection
object.
See Also