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.Match (String, Int32)

Matches a regular expression with a string and returns the precise result as a RegexMatch object.

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

Parameters

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

Return Value

A Regular Expression Match object.

See Also

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