实例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
public class Char_cn {
public static void main(String[] args) {
// TODO Auto-generated method stub
String haha = "我叫兜兜abcd" ;
int true_num = String_length(haha);
System.out.println( "true" + true_num);
int false_num = haha.length();
System.out.print( "flase" + false_num);
}
public static int String_length(String value) {
int valueLength = 0 ;
String chinese = "[\u4e00-\u9fa5]" ;
for ( int i = 0 ; i < value.length(); i++) {
String temp = value.substring(i, i + 1 );
if (temp.matches(chinese)) {
valueLength += 2 ;
} else {
valueLength += 1 ;
}
}
return valueLength;
}
}
|
1、判断字符串是否为连续的中文字符(不包含英文及其他任何符号和数字):
Regex.IsMatch("中文","^[/u4e00-/u9fa5]");
2、判断字符串是否为中文字符串(仅不包含英文但可以包含其他符号及数字):
!Regex.IsMatch("中文",@"[a-zA-Z]");
以上这篇java中判断字段真实长度的实例(中文2个字符,英文1个字符)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。