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

Overload List

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

[Visual Basic] Overloads Public Function Matches(String, Integer) As MatchCollection
[C#] public MatchCollection Matches(String, int);
[C++] public: MatchCollection* Matches(String*, int);
[JScript] public function Matches(String, int) : MatchCollection;

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

[Visual Basic] Overloads Public Function Matches(String) As MatchCollection
[C#] public MatchCollection Matches(String);
[C++] public: MatchCollection* Matches(String*);
[JScript] public function Matches(String) : MatchCollection;

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

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

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

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

See Also

Regex Class | Regex Members | System.Text.RegularExpressions Namespace