MCPcopy Create free account
hub / github.com/ReadyTalk/avian / split

Method split

classpath/java/lang/String.java:514–516  ·  view source on GitHub ↗
(String regex)

Source from the content-addressed store, hash-verified

512 }
513
514 public String[] split(String regex) {
515 return split(regex, 0);
516 }
517
518 public String[] split(String regex, int limit) {
519 return Pattern.compile(regex).split(this, limit);

Callers 1

mainMethod · 0.95

Calls 1

compileMethod · 0.95

Tested by 1

mainMethod · 0.76