Mega Code Archive

 
Categories / Java / Regular Expressions
 

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);   } }