MCPcopy Create free account
hub / github.com/apache/tomcat / join

Method join

java/org/apache/tomcat/util/buf/StringUtils.java:44–46  ·  view source on GitHub ↗

Joins two strings with a comma separator. @param a the first string @param b the second string @return the joined string

(String a, String b)

Source from the content-addressed store, hash-verified

42 * @return the joined string
43 */
44 public static String join(String a, String b) {
45 return join(new String[] { a, b });
46 }
47
48
49 /**

Calls 4

toStringMethod · 0.65
applyMethod · 0.65
isEmptyMethod · 0.45
appendMethod · 0.45