Matcher replaceFirst : Matcher « Regular Expressions « Java
- Java
- Regular Expressions
- Matcher
Matcher replaceFirst

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcherReplaceFirstExample {
public static void main(String args[]) {
Pattern p = Pattern.compile("(i|I)ce");
String candidateString = "I love ice. Ice is my favorite. Ice Ice Ice.";
Matcher matcher = p.matcher(candidateString);
String tmp = matcher.replaceFirst("Java");
System.out.println(tmp);
}
}
Related examples in the same category