split produces a list by dividing a given string at all occurrences of a given separator.
split
split(separator, string)
> split(",", "foo,bar,baz") [ "foo", "bar", "baz", ] > split(",", "foo") [ "foo", ] > split(",", "") [ "", ]
join
On this page: