Returns a
String array containing the substrings in this instance that are delimited by elements of a specified
Char or
String array.
|
Name
|
Description
|
|
String.Split (Char[])
|
Returns a String array containing the substrings in this instance that are delimited by elements of a specified Char array.
Supported by the .NET Compact Framework.
|
|
String.Split (Char[], Int32)
|
Returns a String array containing the substrings in this instance that are delimited by elements of a specified Char array. A parameter specifies the maximum number of substrings to return.
Supported by the .NET Compact Framework.
|
|
String.Split (Char[], StringSplitOptions)
|
Returns a String array containing the substrings in this string that are delimited by elements of a specified Char array. A parameter specifies whether to return empty array elements.
Supported by the .NET Compact Framework.
|
|
String.Split (String[], StringSplitOptions)
|
Returns a String array containing the substrings in this string that are delimited by elements of a specified String array. A parameter specifies whether to return empty array elements.
Supported by the .NET Compact Framework.
|
|
String.Split (Char[], Int32, StringSplitOptions)
|
Returns a String array containing the substrings in this string that are delimited by elements of a specified Char array. Parameters specify the maximum number of substrings to return and whether to return empty array elements.
Supported by the .NET Compact Framework.
|
|
String.Split (String[], Int32, StringSplitOptions)
|
Returns a String array containing the substrings in this string that are delimited by elements of a specified String array. Parameters specify the maximum number of substrings to return and whether to return empty array elements.
Supported by the .NET Compact Framework.
|