码迷,mamicode.com
首页 > 其他好文 > 详细

邮箱验证

时间:2016-11-07 09:44:27      阅读:208      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!