Splits text into a list of text elements, delimited by the text specified in the separator.
split ( text, separator )
text: (Text) The text to be split.
separator: (Text) The text delimiter by which the text will be separated.
Text
You can experiment with this function in the test box below.
Test Input
split("John Smith","m")
returns John S, ith
On This Page