14 lines
227 B
Plaintext
14 lines
227 B
Plaintext
:sig
|
|
StringList split(String str, String delim)
|
|
|
|
:params
|
|
str : string to be split
|
|
delim : delimiter
|
|
return value : a list of strings
|
|
|
|
:desc
|
|
Splits 'str' into multiple strings based on the given delimiter 'delim'.
|
|
|
|
:see
|
|
>string
|