码迷,mamicode.com
首页 > 编程语言 > 详细

Java正则反向引用

时间:2016-10-22 01:07:13      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:java正则

1)通过\1来引用第一个组中的

public static void main(String[] args) {
String content="<tr>hello world!</tr>";
String regextStr="<(\\w+)>.*?</\\1>";
Pattern pattern=Pattern.compile(regextStr, Pattern.CASE_INSENSITIVE);
Matcher matcher =pattern.matcher(content);
if(matcher.find()){
System.out.println(matcher.group());
}else{
System.out.println("no found");
}
 
}

2)通过$1等来引用

str = str.replaceAll("<!--#include virtual=\"/photosetssi/(\\d+).html(?:\\?\\w+)*\"-->", "<p>@@IMGGROUP=\"" + channelid + "|$1\"@@</p>");


Java正则反向引用

标签:java正则

原文地址:http://woodpecker.blog.51cto.com/2349932/1864342

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!