Searches an input string for all occurrences of a regular expression and returns all the successful matches as if
Match were called numerous times.

Overload List
|
Name
|
Description
|
|
Regex.Matches (String)
|
Searches the specified input string for all occurrences of a regular expression.
Supported by the .NET Compact Framework.
|
|
Regex.Matches (String, Int32)
|
Searches the specified input string for all occurrences of a regular expression, beginning at the specified starting position in the string.
Supported by the .NET Compact Framework.
|
|
Regex.Matches (String, String)
|
Searches the specified input string for all occurrences of the regular expression specified in the pattern parameter.
Supported by the .NET Compact Framework.
|
|
Regex.Matches (String, String, RegexOptions)
|
Searches the specified input string for all occurrences of the regular expression supplied in a pattern parameter with matching options supplied in an options parameter.
Supported by the .NET Compact Framework.
|

See Also