public static boolean isMobileNO(String mobiles) { String telRegex = "[1][358]\\d{9}"; if (TextUtils.isEmpty(mobiles)) return false; else return mobiles.matches(telRegex); }
本文共 223 字,大约阅读时间需要 1 分钟。
public static boolean isMobileNO(String mobiles) { String telRegex = "[1][358]\\d{9}"; if (TextUtils.isEmpty(mobiles)) return false; else return mobiles.matches(telRegex); }
转载于:https://www.cnblogs.com/cuizhe/p/5286334.html