MCPcopy Create free account
hub / github.com/RealTimeGenomics/rtg-tools / split

Method split

src/main/java/com/rtg/util/StringUtils.java:113–115  ·  view source on GitHub ↗

Faster implementation of string splitting on a single character delimiter. @param src the string to split @param delim the delimiter character @return a String[] value

(String src, char delim)

Source from the content-addressed store, hash-verified

111 * @return a <code>String[]</code> value
112 */
113 public static String[] split(String src, char delim) {
114 return split(src, delim, 0);
115 }
116
117 /**
118 * Faster implementation of string splitting on a single character delimiter.

Callers 15

testSplitMethod · 0.95
testWritingMethod · 0.95
parseLineMethod · 0.95
parseFieldsMethod · 0.95
mergeIdsMethod · 0.95
loadVcfIdRangesMethod · 0.95
SymbolicAltMethod · 0.95
isSampleFilteredMethod · 0.95
getInfoSplitMethod · 0.95
sumAdjustFormatFieldMethod · 0.95
getValueMethod · 0.95

Calls 3

indexOfMethod · 0.80
addMethod · 0.65
sizeMethod · 0.45

Tested by 2

testSplitMethod · 0.76
testWritingMethod · 0.76