This activity splits a returns a string array that contains the substrings of the given tsxt that are delimited by elements of the specified string.
Text = 'a;b;c;d;e'
Separator = ';'
Result = ['a','b','c','d','e']
The separator.
The text to be splitted.