public static boolean isMobileNo(String mobiles) {
String telRegex = "[1][3578]
\\d{9}";
if (TextUtils.isEmpty(mobiles)) {
return false;
} else {
return mobiles.matches(telRegex);
}
}
String telRegex = "[1][3578]
if (TextUtils.isEmpty(mobiles)) {
return false;
} else {
return mobiles.matches(telRegex);
}
}