欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java使用正则表达校验手机号码示例(手机号码正则)

程序员文章站 2024-02-23 16:26:52
复制代码 代码如下:public static boolean ismobilenumber(string mobiles) {return pattern.compile...

复制代码 代码如下:

public static boolean ismobilenumber(string mobiles) {
return pattern.compile("^((13[0-9])|(15[^4,\\d])|(18[^1^4,\\d]))\\d{8}").matcher(mobiles).matches();
}