java正则表达式 字符串中汉字个数

String str = "北京海淀 hello world!";
int count=0;
Pattern pattern = Pattern.compile("[\u4e00-\u9fa5]");
char c[] = str.toCharArray();
for(int i=0;i<c.length;i++){
	Matcher matcher = pattern.matcher(String.valueOf(c[i]));
	if(matcher.matches()){
		count++;
	}
}
System.out.println(count);


统计指定内容的汉字个数:













你可能感兴趣的:(java正则表达式 字符串中汉字个数)