Syntax
list splitsubst( string X, string delimiter )
Description
The splitsubst function splits a string X into a list. This function is similar to the split function except that the delimiter contains the entire delimiter string.
Example
The following example returns the list: "john","jane,james"
a = splitsubst( "john,,jane,james", ",," )