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

正则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 } }

相关文章

正则替换html代码中img标签的src值在开发富文本信息在移动端...
正则表达式
AWK是一种处理文本文件的语言,是一个强大的文件分析工具。它...
正则表达式是特殊的字符序列,利用事先定义好的特定字符以及...
Python界一名小学生,热心分享编程学习。
收集整理每周优质开发者内容,包括、、等方面。每周五定期发...