Splits the string on whitespace.
public static string[] SplitOnWhitespace(this string value)
| parameter | description |
|---|---|
| value | The string. |
The array of substrings.
See the documentation for string.Split for the white-space characters recognized by this method.
Splits the string on whitespace.
public static string[] SplitOnWhitespace(this string value, StringSplitOptions options)
| parameter | description |
|---|---|
| value | The string. |
| options | The options. |
The array of substrings.
See the documentation for string.Split for the white-space characters recognized by this method.