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

Splits the input string at the position defined by a previous pattern.

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

Parameters

input
The string to be split.
count
[To be supplied.]

Return Value

An array of sub-strings split from the input string.

See Also

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