Overview
This function splits one string into an array of strings, separated when the separator string is found. The separator is removed.
Parameters
stringSplit("string", "separator")
String
The string that is split based on the separator.
Separator
The character or string that splits the string.
For example...
stringSplit("Montana", "n")
Returns the array [mo, ta, a].