Kaba function string.explode ed

Splits a string at each occurance of a sequence.An empty string gives [""]."hello|world|".explode("|") -> ["hello", "world", ""]

Syntax ed

func pure string.explode(str: string) -> string[]

Parameters ed

str: string
...

Return ed

...