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

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

Parameters

input
String containing the text to search.
startat
Character position where search will start.

Return Value

See Also

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