split text(original, separator)split Type: (Text, Text) -> [Text]

Splits a text item into a list of smaller text items by dividing at the places where the separator occurs.

The returned list does not feature the separators.

ExamplesClick an example to insert it
split text("The quick brown fox", " ")["The", "quick", "brown", "fox"]
split text("6:08:32", ":")["6", "08", "32"]
split text("*abc*", "*")["", "abc", ""]
split text("Hello", "")["H", "e", "l", "l", "o"]