String regex="([\u4e00-\u9fa5]+)";
String str="132更新至456";
Matcher matcher = Pattern.compile(regex).matcher(str);
if(matcher.find()){
	System.out.println(matcher.group(0));
}

  

相关文章:

  • 1970-01-01
  • 2022-12-23
  • 2021-11-17
  • 2021-11-20
  • 2021-07-23
  • 2022-02-16
  • 2021-11-11
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-30
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案