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, 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 beginning As Integer, _
   ByVal length As Integer _
) As Match
[C#]
public Match Match(
   string input,
   int beginning,
   int length
);
[C++]
public: Match* Match(
   String* input,
   int beginning,
   int length
);
[JScript]
public function Match(
   input : String,
   beginning : int,
   length : int
) : Match;

Parameters

input
String containing the text to search.
beginning
Character position in input string where search will begin.
length
Number of character in substring to search.

Return Value

A Regular Expression Match object.

See Also

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