java正则表达式验证邮箱、手机号码

/**
  * 验证邮箱地址是否正确
  * @param email
  * @return
  */
 public static boolean checkEmail(String email){
  boolean flag = false;
  try{
   String check = "^([a-z0-9A-Z]+[-|\\.]?)+[a-z0-9A-Z]@([a-z0-9A-Z]+(-[a-z0-9A-Z]+)?\\.)+[a-zA-Z]{2,}$";
   Pattern regex = Pattern.compile(check);
   Matcher matcher = regex.matcher(email);
   flag = matcher.matches();
  }catch(Exception e){
   LOG.error("验证邮箱地址错误", e);
   flag = false;
  }
  
  return flag;
 }
 /**
  * 验证手机号码
  * @param mobiles
  * @return
  */
 public static boolean isMobileNO(String mobiles){
  boolean flag = false;
  try{
   Pattern p = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$");
   Matcher m = p.matcher(mobiles);
   flag = m.matches();
  }catch(Exception e){
   LOG.error("验证手机号码错误", e);
   flag = false;
  }
  return flag;
 }

转载于:https://www.iteye.com/blog/zjf201172653-2005363

猜你喜欢

转载自www.cnblogs.com/it-deepinmind/p/11791007.html