博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
//11个整数的手机号码正则式 phoneNumber(String number)
阅读量:6834 次
发布时间:2019-06-26

本文共 495 字,大约阅读时间需要 1 分钟。

public boolean phoneNumber(String number)

{
boolean flag=false;
String pare="\\d{11}";//11个整数的手机号码正则式
String pare2="\\d{12}";//12个整数的座机号码正则式
CharSequence num=number;//获取电话号码
Pattern pattern=Pattern.compile(pare);//判断是否为手机号码
Matcher matcher=pattern.matcher(num);
Pattern pattern2=Pattern.compile(pare2);//判断是否为座机号码
Matcher matcher2=pattern2.matcher(num);
if(matcher.matches()||matcher2.matches())//如果符合格式
{
flag=true;//标志位设为true
}
return flag;
}

转载于:https://www.cnblogs.com/tfy1332/p/3655969.html

你可能感兴趣的文章