利用正则判断

/** 验证汉字
* 表达式 ^[\u4e00-\u9fa5]{0,}$ 
* 描述 只能汉字
*/
public static boolean chinese(String name) { 
String regex = "^[\\u4e00-\\u9fa5|a-z|A-Z]*$"; 
Matcher m = Pattern.compile(regex).matcher(name); 
return m.find(); 
}


/*移动:134、135、136、137、138、139、150、151、157(TD)、158、159、187、188
*联通:130、131、132、152、155、156、185、186
*电信:133、153、180、189、(1349卫通)
*/
public static boolean isMobileNO(String phonenumber){  
Pattern p = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[\\d]))\\d{8}$");  
Matcher m = p.matcher(phonenumber);  
return m.matches();

/*身份证格式的正则校验 
*/
public static boolean verForm(String id_number) {
String reg = "^\\d{15}$|^\\d{17}[0-9Xx]$";
if (!id_number.matches(reg)) {
return false;}
return true;
}
/* 身份证最后一位的校验算法
*/
public static boolean verify(char[] id_number) {
int sum = 0;
int w[] = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };
char[] ch = { '1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2' };
for (int i = 0; i < id_number.length - 1; i++) {
sum += (id_number[i] - '0') * w[i];
}
int c = sum % 11;
char code = ch[c];
char last = id_number[id_number.length-1];
last = last == 'x' ? 'X' : last;
return last == code;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值