日期:2014-05-20 浏览次数:20880 次
String s = "中国"; Pattern p = Pattern.compile("[\u4e00-\u9fa5]"); Matcher m = p.matcher(s); while(m.find()){ System.out.println(m.group()); }