TheCommonUtils..::..cdeSplit Method (String, Char, Boolean, Boolean)
Converts a string into a string array. if you don't need the Remove.. parameter, please use .NET .split() function. if you need the remove... parameter use the override with the string sep(erator)
Namespace:
nsCDEngine.BaseClassesAssembly: C-DEngine (in C-DEngine.dll)
Syntax
Parameters
- pToSplit
- Type: String
The input string.
- sep
- Type: Char
The delimiter in the input string.
- RemoveDuplicates
- Type: Boolean
if true, the returning list does not contain duplicate entries
- RemoveEmptyEntries
- Type: Boolean
if true, the returning list does not contain empty entries