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.
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"]