Java 使用正则表达式

 

import java.util.regex.Pattern;
import java.util.regex.Matcher;
 
public class RegexExample {
    public static void main(String[] args) {
        // 定义正则表达式
        String regex = "\\bcat\\b";
        // 需要检查的字符串
        String text = "cat, sits on the mat.";
 
        // 编译正则表达式
        Pattern pattern = Pattern.compile(regex);
        // 创建匹配器
        Matcher matcher = pattern.matcher(text);
 
        // 查找匹配的子串
        boolean found = matcher.find();
 
        // 输出结果
        if (found) {
            System.out.println("找到匹配的子串: " + matcher.group());
        } else {
            System.out.println("没有找到匹配的子串");
        }
    }
}
 
 

posted on 2024-11-06 11:26  摆渡人19966  阅读(0)  评论(0编辑  收藏  举报

导航