日期:2014-05-20 浏览次数:20692 次
public static void main(String[] args) { String str = "<p class='xxxx'> Content\n\r内容\t\n\n</p>"; Matcher m = Pattern.compile("<p.*?>([\\s\\S]*)</p>").matcher(str); while(m.find()){ System.out.println(m.group(1)); } }