Java Matcher如何设置匹配模式为不区分大小写

avatar
作者
筋斗云
阅读量:0

要设置Java Matcher的匹配模式为不区分大小写,可以使用Pattern.CASE_INSENSITIVE标志。示例如下:

import java.util.regex.Matcher; import java.util.regex.Pattern;  public class Main {     public static void main(String[] args) {         String text = "Hello, World!";         Pattern pattern = Pattern.compile("hello", Pattern.CASE_INSENSITIVE);         Matcher matcher = pattern.matcher(text);          if (matcher.find()) {             System.out.println("Match found!");         } else {             System.out.println("Match not found!");         }     } } 

在上面的示例中,使用Pattern.compile方法并传递Pattern.CASE_INSENSITIVE标志来创建不区分大小写的匹配模式。然后使用Matcher对象来查找匹配项。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!