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

Splits the input string at the position defined by pattern.

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

Parameters

input
The string to be split.
pattern
[To be supplied.]
options
[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