( begin auto-generated from join.xml ) 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() . ( end auto-generated
(String[] list, char separator)
| 9107 | * @see PApplet#nfs(float, int, int) |
| 9108 | */ |
| 9109 | static public String join(String[] list, char separator) { |
| 9110 | return join(list, String.valueOf(separator)); |
| 9111 | } |
| 9112 | |
| 9113 | |
| 9114 | static public String join(String[] list, String separator) { |
no test coverage detected