Persistate API documentation
Split Method (toSplit, separators, properise)
NamespacesPersistateUtlSplit(String, String, Boolean)

[This is preliminary documentation and is subject to change.]

This splits a string into tokens using any of the characters in a string as separator characters.
Declaration Syntax
C#
public static string[] Split(
	string toSplit,
	string separators,
	bool properise
)
Parameters
toSplit (String)
The string to split.
separators (String)
The string containing the separator characters. If this is null or empty, all whitespace characters are used.
properise (Boolean)
If true, the split tokens will be put into proper case.
Return Value
The split strings. The separators are not included.
Remarks
Two or more contiguous separator characters count as a single separator - no empty tokens are returned. The tokens are trimmed of whitespace fore and aft, optionally put into proper case, and returned in a string array.

Assembly: Persistate (Module: Persistate) Version: 0.6.1.20 (0.6.1.20)