String.Split Method
.NET Framework 3.0
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array.
| Name | Description |
|---|---|
| String.Split (Char[]) | Returns a string array that contains the substrings in this instance that are delimited by elements of a specified Unicode character array. Supported by the .NET Compact Framework. |
| String.Split (Char[], Int32) | Returns a string array that contains the substrings in this instance that are delimited by elements of a specified Unicode character array. A parameter specifies the maximum number of substrings to return. |
| String.Split (Char[], StringSplitOptions) | Returns a string array that contains the substrings in this string that are delimited by elements of a specified Unicode character array. A parameter specifies whether to return empty array elements. |
| String.Split (String[], StringSplitOptions) | Returns a string array that contains the substrings in this string that are delimited by elements of a specified string array. A parameter specifies whether to return empty array elements. |
| String.Split (Char[], Int32, StringSplitOptions) | Returns a string array that contains the substrings in this string that are delimited by elements of a specified Unicode character array. Parameters specify the maximum number of substrings to return and whether to return empty array elements. |
| String.Split (String[], Int32, StringSplitOptions) | Returns a string array that contains 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. |
Community Additions
ADD
Show: