java.util.regex.Matcher.replaceAll() Method



Description

The java.util.regex.Matcher.replaceAll(String replacement) method replaces every subsequence of the input sequence that matches the pattern with the given replacement string.

Declaration

Following is the declaration for java.util.regex.Matcher.replaceAll(String replacement) method.

public String replaceAll(String replacement)

Parameters

  • replacement − The replacement string.

Return Value

The string constructed by replacing each matching subsequence by the replacement string, substituting captured subsequences as needed.

Example

The following example shows the usage of java.util.regex.Matcher.replaceAll(String replacement) method.

package com.tutorialspoint;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MatcherDemo {
   private static String REGEX = "dog";
   private static String INPUT = "The dog says meow " + "All dogs say meow.";
   private static String REPLACE = "cat";
   
   public static void main(String[] args) {
      Pattern pattern = Pattern.compile(REGEX);
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT); 
      INPUT = matcher.replaceAll(REPLACE);
      System.out.println(INPUT);
   }
}

Let us compile and run the above program, this will produce the following result −

The cat says meow All cats say meow.
javaregex_matcher.htm
Advertisements