StringValue | String to split. |
SplitChars | Characters to split on. |
Count | How many times to split. |
split
except it takes a count parameter that gives the max number of splits to make.If there is still some part of the string left over after the last split then that will be returned as the last element of the list (see example).
% SplitNTimes "one,two,three" , 1
one two,three