本文主要是介绍Java正则表达式判断是否为手机号码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这里贴出一个电话号码检查的工具类,基本的电话号码格式都能够满足了。
- import java.util.regex.Matcher;
- import java.util.regex.Pattern;
- import java.util.regex.PatternSyntaxException;
-
- public class PhoneFormatCheckUtils {
-
-
-
-
- public static boolean isPhoneLegal(String str)throws PatternSyntaxException {
- return isChinaPhoneLegal(str) || isHKPhoneLegal(str);
- }
-
-
-
-
-
-
-
-
-
-
- public static boolean isChinaPhoneLegal(String str) throws PatternSyntaxException {
- String regExp = "^((13[0-9])|(15[^4])|(18[0,2,3,5-9])|(17[0-8])|(147))\\d{8}$";
- Pattern p = Pattern.compile(regExp);
- Matcher m = p.matcher(str);
- return m.matches();
- }
-
-
-
-
- public static boolean isHKPhoneLegal(String str)throws PatternSyntaxException {
- String regExp = "^(5|6|8|9)\\d{7}$";
- Pattern p = Pattern.compile(regExp);
- Matcher m = p.matcher(str);
- return m.matches();
- }
-
- }
当然,这里使用正则表达式不一定都面面俱到了,以后万一又有什么新的格式了也不好说,不过道理都是一样的,修改一下正则表达式的规则就行。
这篇关于Java正则表达式判断是否为手机号码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!