Join an array of Strings together as a single String, separated by the whatever's passed in for the separator.
(String str[], char separator)
| 145 | * separated by the whatever's passed in for the separator. |
| 146 | */ |
| 147 | static public String join(String str[], char separator) { |
| 148 | return join(str, String.valueOf(separator)); |
| 149 | } |
| 150 | |
| 151 | |
| 152 | /** |