首页 > 其他 > 详细

正则Pattern Matcher compile matcher find group(.*?)

时间:2015-05-29 18:16:46      阅读:217      评论:0      收藏:0      [点我收藏+]

正则Pattern Matcher compile matcher find group(.*?)

public static void main(String[] args) {
        String str = "http://funds.hexun.com/2015-05-28/176237903.html";
        Pattern pattern = Pattern.compile("http:\\/\\/(.*?)\\.hexun\\.com(.*?)\\.html");
        Matcher matcher = pattern.matcher(str);
        while (matcher.find()) {
            System.out.println("Group0=:" + matcher.group(0));// 得到第0组——整个匹配
            System.out.println("Group1=:" + matcher.group(1));// 得到第一组匹配——与(or)匹配的
            System.out.println("Group2=:" + matcher.group(2));// 得到第二组匹配——与(ld!)匹配的,组也就是子表达式
            System.out.println("Start0=:" + matcher.start(0) + " End0:="
                    + matcher.end(0));// 总匹配的索引
            System.out.println("Start1=:" + matcher.start(1) + " End1:="
                    + matcher.end(1));// 第一组匹配的索引
            System.out.println("Start2=:" + matcher.start(2) + " End2=:"
                    + matcher.end(2));// 第二组匹配的索引
            System.out.println(str.substring(matcher.start(0), matcher.end(1)));// 从总匹配开始索引到第1组匹配的结束索引之间子串——Wor
        }
    }

正则Pattern Matcher compile matcher find group(.*?)

原文:http://blog.csdn.net/menglele1314/article/details/46236591

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!