Combines an array of Strings into one String, each separated by the character(s) used for the separator parameter. To join arrays of ints or floats, it's necessary to first convert them to Strings using nf() or nfs() . @webref data:string_functions @webBrief Combines an array of
(String[] list, char separator)
| 8326 | * @see PApplet#nfs(float, int, int) |
| 8327 | */ |
| 8328 | static public String join(String[] list, char separator) { |
| 8329 | return join(list, String.valueOf(separator)); |
| 8330 | } |
| 8331 | |
| 8332 | |
| 8333 | static public String join(String[] list, String separator) { |
no test coverage detected