java正则: 忽略大小写匹配

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

import com.sun.org.apache.xerces.internal.impl.xpath.regex.CaseInsensitiveMap;

public class test {

    public static void main(String[] args) {
        String str = "java JavA ABC";
        Pattern test_ = Pattern.compile("java",Pattern.CASE_INSENSITIVE);
        Matcher result_ = test_.matcher(str);

        str = result_.replaceAll("Perl6");
        
        System.out.println(str);
        
    }


}

 

posted on 2017-07-22 05:18  Perl6  阅读(11611)  评论(0编辑  收藏  举报

导航