MCPcopy
hub / github.com/ccxt/ccxt / split

Method split

java/lib/src/main/java/io/github/ccxt/Helpers.java:1269–1278  ·  view source on GitHub ↗
(Object str, Object splitter)

Source from the content-addressed store, hash-verified

1267// }
1268
1269 public static Object split(Object str, Object splitter) {
1270 if (str == null || splitter == null) {
1271 return Collections.emptyList();
1272 }
1273
1274 String s = String.valueOf(str);
1275 String delim = String.valueOf(splitter);
1276
1277 return Arrays.asList(s.split(Pattern.quote(delim)));
1278 }
1279}

Callers 15

featureValueByTypeMethod · 0.95
fetchWebEndpointMethod · 0.95
safeMarketMethod · 0.95
fetchMarketsMethod · 0.95
marketMethod · 0.95
parseCurrencyMethod · 0.95
priceToPrecisionMethod · 0.95
getDexFromHip3SymbolMethod · 0.95
safeMarketMethod · 0.95
parseMarketMethod · 0.95

Calls

no outgoing calls