Split the string by the specified delimiter.
Example:
string[] parts = Strings.split ("a,b,c", ",");
assert (parts.length == 3);
assert (parts[0] == "a");
| s |
the string to split. |
| delimiter |
the delimiter. |
|
array of substrings. |