StringUtility.SplitOnWhitespace method (1 of 2)

Splits the string on whitespace.

public static string[] SplitOnWhitespace(this string value)
parameter description
value The string.

Return Value

The array of substrings.

Remarks

See the documentation for string.Split for the white-space characters recognized by this method.

See Also


StringUtility.SplitOnWhitespace method (2 of 2)

Splits the string on whitespace.

public static string[] SplitOnWhitespace(this string value, StringSplitOptions options)
parameter description
value The string.
options The options.

Return Value

The array of substrings.

Remarks

See the documentation for string.Split for the white-space characters recognized by this method.

See Also