Join an array of strings with the specified separator.
Example:
assert (Strings.join (", ", {"a", "b", "c"}) == "a, b, c");
| separator |
the separator string. |
| parts |
the strings to join. |
|
joined string. |