赞
踩
@Test
public void test() {
String str = "123abc中文cde123abc提取123ab我ABC汉DEF和我们678,854中华人民共和国,美国";
Pattern p = null;
Matcher m = null;
String value = null;
p = Pattern.compile("([\u4e00-\u9fa5]+)");
m = p.matcher(str);
while (m.find()) {
value = m.group(0);
System.out.println(value);
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。