标签:style java strong re c size
假如现在有一个字符串,如何快速准确的判断其是否为手机号?
public boolean isMobileNO(String mobiles) {
Pattern p = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[0-9]))\\d{8}$");
Matcher m = p.matcher(mobiles);
return m.matches();
}
相当简单……………………………………………………………………
Java快速判断是不是手机号,码迷,mamicode.com
标签:style java strong re c size
原文地址:http://blog.csdn.net/pamchen/article/details/24642823