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

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

Parameters

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

Return Value

A Regular Expression Match object.

See Also

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