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));
}
}