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, Int32)

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

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

Parameters

input
String containing the text to search.
startat
Character position in input string where search will begin.

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