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: