NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Regex.Matches (String, String, String)

Returns all the successful matches as if Match were called iteratively numerous times.

[Visual Basic]
Overloads Public Shared Function Matches( _
   ByVal input As String, _
   ByVal pattern As String, _
   ByVal options As String _
) As MatchCollection
[C#]
public static MatchCollection Matches(
   string input,
   string pattern,
   string options
);
[C++]
public: static MatchCollection* Matches(
   String* input,
   String* pattern,
   String* options
);
[JScript]
public static function Matches(
   input : String,
   pattern : String,
   options : String
) : MatchCollection;

Parameters

input
The string to be tested for a match.
pattern
[To be supplied.]
options
[To be supplied.]

Return Value

The collection of match objects found by the search.

See Also

Regex Class | Regex Members | System.Text.RegularExpressions Namespace | Regex.Matches Overload List