摘要:
/** * 验证邮箱 * * @param 待验证的字符串 * @return 如果是符合的字符串,返回 true ,否则为 false */ public static boolean isEmail(String str) { String regex = "^([\\w-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([\\... 阅读全文
摘要:
/** * 验证电话号码 * * @param 待验证的字符串 * @return 如果是符合格式的字符串,返回 true ,否则为 false */ public static boolean IsTelephone(String str) { String regex = "^(\\d{3,4}-)?\\d{6,8}$"; return match(regex, str); } 阅读全文
摘要:
/** * 验证输入手机号码 * * @param 待验证的字符串 * @return 如果是符合格式的字符串,返回 true ,否则为 false */ public static boolean IsHandset(String str) { String regex = "^[1]+[3,5]+\\d{9}$"; return match(regex, str); } 阅读全文