java正则: 忽略大小写匹配

Posted FireC@t @ Perl6

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
        
    }


}

 

以上是关于java正则: 忽略大小写匹配的主要内容,如果未能解决你的问题,请参考以下文章

怎么设置正则表达式不区分大小写

正则表达式:忽略区分大小写

正则表达式字母大小写问题?

正则匹配文件后缀的问题

局部匹配忽略案例和变音符号

关于正则表达式