MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / split

Method split

ij/src/main/java/ij/util/Tools.java:257–259  ·  view source on GitHub ↗

Splits a string into substrings using the default delimiter set, which is " \t\n\r" (space, tab, newline and carriage-return).

(String str)

Source from the content-addressed store, hash-verified

255 /** Splits a string into substrings using the default delimiter set,
256 which is " \t\n\r" (space, tab, newline and carriage-return). */
257 public static String[] split(String str) {
258 return split(str, " \t\n\r");
259 }
260
261 /** Splits a string into substring using the characters
262 contained in the second argument as the delimiter set. */

Callers 15

cropMethod · 0.95
splitMethod · 0.95
execMethod · 0.95
openUrlMethod · 0.95
showDialogMethod · 0.95
showHSDialogMethod · 0.95
runMethod · 0.95
runMethod · 0.95
getSettingsMethod · 0.95
showMacroFunctionsMethod · 0.95
showDialogMethod · 0.95
decodeKernelMethod · 0.95

Calls 3

splitLinesMethod · 0.95
equalsMethod · 0.45
nextTokenMethod · 0.45

Tested by 1

testIntMethod · 0.36