标签:div return bool log 验证邮箱 邮箱 public false pre
/** * 验证邮箱 * * @param 待验证的字符串 * @return 如果是符合的字符串,返回 <b>true </b>,否则为 <b>false </b> */ public static boolean isEmail(String str) { String regex = "^([\\w-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([\\w-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$"; return match(regex, str); }
标签:div return bool log 验证邮箱 邮箱 public false pre
原文地址:http://www.cnblogs.com/20gg-com/p/6037438.html