日期:2014-05-20 浏览次数:20854 次
public static void main(String[] args) {
String str1 = "[tag]asdf ddd 111[/tag]";
Pattern p = Pattern.compile("\\[tag\\](.*)\\[/tag\\]");
Matcher m = p.matcher(str1);
if(m.find())
{
System.out.println(m.group(1));
}
}
\\[tag\\](.+?)\\[tag\\]