Matcher replaceAll : Matcher « Regular Expressions « Java






Matcher replaceAll

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

public class MatcherReplaceAllExample {
  public static void main(String args[]) {
    Pattern p = Pattern.compile("(i|I)ce");

    //create the candidate String
    String candidateString = "I love ice. Ice is my favorite. Ice Ice Ice.";

    Matcher matcher = p.matcher(candidateString);
    String tmp = matcher.replaceAll("Java");

    System.out.println(tmp);

  }
}

           
         
    
    
  








Related examples in the same category

1.Matcher: Find DemoMatcher: Find Demo
2.Matcher ResetMatcher Reset
3.Matcher PatternMatcher Pattern
4.Another Matcher resetAnother Matcher reset
5.Matcher startMatcher start
6.Matcher start with parameterMatcher start with parameter
7.Matcher endMatcher end
8.Matcher end with parameterMatcher end with parameter
9.Matcher groupMatcher group
10.Matcher group with parameterMatcher group with parameter
11.Matcher group countMatcher group count
12.Matcher matchMatcher match
13.Matcher findMatcher find
14.Matcher find with parameterMatcher find with parameter
15.Matcher LookingAtMatcher LookingAt
16.Matcher appendReplacementMatcher appendReplacement
17.Matcher replaceFirstMatcher replaceFirst
18.Matcher group 2Matcher group 2
19.Matcher group with parameter 2Matcher group with parameter 2
20.Matcher ground countMatcher ground count
21.Matcher replaceAll 2Matcher replaceAll 2
22.Matcher find groupMatcher find group
23.Another Matcher find and groupAnother Matcher find and group
24.Pattern compilePattern compile
25.Show line ending matching using Regular Expressions classShow line ending matching using Regular Expressions class
26.Matcher Groups Matcher Groups
27.Matches Looking
28.Match Name Formats
29.Checks whether a string matches a given wildcard pattern
30.Replace all occurances of the target text with the provided replacement text
31.Check if a text is present at the current position in a buffer for string
32.This program tests regular expression matching