Signature
StringList split_space(String str)
Parameters
str : string to be split
return value : a list of strings
Splits str on runs of whitespace.
Multiple adjacent whitespace characters are treated as a single separator, so repeated spaces, tabs, or line breaks do not create empty entries.
Example
print(join(split_space("one two\tthree"), ","), "\n");
Output
one,two,three