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

Method replaceAll

classpath/java/lang/String.java:535–537  ·  view source on GitHub ↗
(String regex, String replacement)

Source from the content-addressed store, hash-verified

533 }
534
535 public String replaceAll(String regex, String replacement) {
536 return Pattern.compile(regex).matcher(this).replaceAll(replacement);
537 }
538
539 public String replace(CharSequence target, CharSequence replace) {
540 if (target.length() == 0) {

Callers 1

mainMethod · 0.95

Calls 2

compileMethod · 0.95
matcherMethod · 0.45

Tested by 1

mainMethod · 0.76