匹配中文标点符号:
String str="[\u3002\uff1b\uff0c\uff1a\u201c\u201d\uff08\uff09\u3001\uff1f\u300a\u300b]"
该表达式可以识别出: 。 ; ,: “ ”( ) 、 ? 《 》 这些标点符号。
匹配中文汉字
String str="[\u4e00-\u9fa5]";
该表达式可以识别出任何汉字。