Splits a string into an array of strings.
An array of strings.
Blank strings are excluded from the array.
string[] strings = MainUtil.Split("Name1|Value1|Name2||Name3|Value3", '|');
// "Name1", "Value1", "Name2", "Name3", "Value3"
Please notice that Value2 is missing.
MainUtil Class | Sitecore Namespace | MainUtil.Split Overload List