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正则: 忽略大小写匹配的主要内容,如果未能解决你的问题,请参考以下文章