VOOZH about

URL: https://www.geeksforgeeks.org/java/matcher-replaceallstring-method-in-java-with-examples/

⇱ Matcher replaceAll(String) method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Matcher replaceAll(String) method in Java with Examples

Last Updated : 1 Jul, 2020
The replaceAll(String) method of Matcher Class behaves as a append-and-replace method. This method reads the input string and replace it with the matched pattern in the matcher string. Syntax:
public String replaceAll(String stringToBeReplaced)
Parameters: This method takes a parameter stringToBeReplaced which is the String to be replaced in the matcher. Return Value: This method returns a String with the target String constructed by replacing the String. Below examples illustrate the Matcher.replaceAll() method: Example 1:
Output:
Before Replacement: GeeksForGeeks Geeks for For Geeks Geek
After Replacement: GFGForGFG GFG for For GFG Geek
Example 2:
Output:
After Replacement: GGFGGGFGGGFGGGFGGFG GFG GFG GFG GFG
Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#replaceAll-java.lang.String-
Comment