您的位置:首页 > 其它

判断一个字符串是由字符还是数字、还是汉字组成

2015-06-11 20:09 176 查看
版权声明:本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/songlin0859/article/details/46461415

1、判断一个字符的类型 代码如下:

/**
* 判断一个字符的类型

* @param str
*            需要判断的文本
* @return num 数字 char 英文/拼音 zh 中文 null 出错
*/
public String getCharType(char str) {
String txt = str + "";


Pattern p = Pattern.compile("[0-9]*");
Matcher m = p.matcher(txt);
if (m.matches()) {// 输入的是数字
return "num";
}
p = Pattern.compile("[a-zA-Z]");
m = p.matcher(txt);
if (m.matches()) {// 输入的是字母
return "char";
}
p = Pattern.compile("[\u4e00-\u9fa5]");
m = p.matcher(txt);
if (m.matches()) {// 输入的是汉字
return "zh";
}
return null;// 其实应该抛异常比较合适
}

2、将字符串转化成字符数组,再逐个判断

/**
* 判断一个字符串的类型

* @param str
*            字符串
* @return num 数字 char 英文/拼音 zh 中文 null 出错
*/
public String getStringType(String str) {
String type;
char[] chars = str.toCharArray();
type = getCharType(chars[0]);


int i = 1;
for (; i < chars.length; i++) {
if (getCharType(chars[i]) == null) {
return null;
}
if (!(getCharType(chars[i])).equals(type)) {
return null;
}
}


if (i >= chars.length) {
return type;
}
return null;
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐