16 lines
345 B
Plaintext
16 lines
345 B
Plaintext
:sig
|
|
StringList split(String str, String delim)
|
|
StringList split(String str)
|
|
|
|
|
|
:params
|
|
str : string to be split
|
|
delim : optional, delimiter (if omitted, any sequence of whitespace characters will count as a delimiter)
|
|
return value : a list of strings
|
|
|
|
:desc
|
|
Splits 'str' into multiple strings based on the given delimiter 'delim'.
|
|
|
|
:see
|
|
>string
|