MCPcopy Create free account
hub / github.com/BaseXdb/basex / split

Method split

basex-core/src/main/java/org/basex/util/Strings.java:134–136  ·  view source on GitHub ↗

Splits a string around matches of the given separator. @param string string to be split @param separator separation character @return resulting strings

(final String string, final char separator)

Source from the content-addressed store, hash-verified

132 * @return resulting strings
133 */
134 public static String[] split(final String string, final char separator) {
135 return split(string, separator, -1);
136 }
137
138 /**
139 * Splits a string around matches of the given separator.

Callers 15

loginMethod · 0.95
addParamsMethod · 0.95
regexMethod · 0.95
normalizeMethod · 0.95
FuncDefinitionMethod · 0.95
getMethod · 0.95
argsMethod · 0.95
availVersionMethod · 0.95
ClientSessionMethod · 0.95
resolverMethod · 0.95
uri2pathMethod · 0.95
UserInfoMethod · 0.95

Calls 6

initialCapacityMethod · 0.95
addMethod · 0.95
charAtMethod · 0.80
lengthMethod · 0.45
substringMethod · 0.45
finishMethod · 0.45

Tested by 1

auxMethod · 0.76