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

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

Parameters

input
[To be supplied.]
pattern
The pattern to match.

Return Value

True if the pattern is found in the input string, otherwise false.

See Also

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