其他分享
首页 > 其他分享> > find()

find()

作者:互联网

 

//find() 寻找符合 regexp 的子字符串,寻找到的可能有多个
    public static void test1(){
        Pattern compile = Pattern.compile("<.*?>");
        Matcher matcher = compile.matcher("<h1123>RUNOOB-菜鸟教程<h1>");

        matcher.find();
        System.out.println(matcher.group()); //<h1123>

        matcher.find();
        System.out.println(matcher.group()); //<h1>
    }

    public static void test3(){
        Pattern compile = Pattern.compile("<.*?>");
        Matcher matcher = compile.matcher("<h1123>RUNOOB-菜鸟教程<h1>");
        while (matcher.find()){
            System.out.println(matcher.group());
        }
//        <h1123>
//        <h1>
    }

 

标签:matcher,System,compile,Pattern,find,out
来源: https://www.cnblogs.com/pangkai/p/16300239.html