java正则表达式提取字符串中的中文信息

package com.tool;


import java.util.regex.Matcher;
import java.util.regex.Pattern;


public class PatternTh {
public static void main(String[] args) {
String paramValue="你好啊,1233333,不好啊";
System.out.println(PatternTh.getChinese(paramValue));
}



/*1、至少匹配一个汉字的写法。
2、这两个unicode值正好是Unicode表中的汉字的头和尾。
3、"[]"代表里边的值出现一个就可以,后边的“+”代表至少出现1次,合起来即至少匹配一个汉字。
*/
public static String getChinese(String paramValue) {
String regex = "([\u4e00-\u9fa5]+)";
String str = "";
Matcher matcher = Pattern.compile(regex).matcher(paramValue);
while (matcher.find()) {
str+= matcher.group(0);
}
return str;
}
}

你可能感兴趣的:(java正则表达式提取字符串中的中文信息)