Java正则表达式匹配手机号和邮箱

代码如下:

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MobileEmailUtils {

    public static boolean checkMobileIsOk(String mobile) {
        String regex = "^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(17[013678])|(18[0,5-9]))\\d{8}$";
        Pattern p = Pattern.compile(regex);
        Matcher m = p.matcher(mobile);
        boolean isMatch = m.matches();
        return isMatch;
    }

    public static boolean checkEmailIsOk(String email) {
        boolean isMatch = true;
        if (!email.matches("[\\w\\.\\-]+@([\\w\\-]+\\.)+[\\w\\-]+")) {
            isMatch = false;
        }
        return isMatch;
    }
}

相关文章:

  • 2021-12-28
  • 2021-12-28
  • 2021-12-01
  • 2022-12-23
  • 2021-12-06
  • 2022-01-25
  • 2021-12-25
  • 2022-01-19
猜你喜欢
  • 2021-12-08
  • 2021-12-19
  • 2021-11-21
  • 2022-01-02
  • 2022-12-23
  • 2022-02-07
相关资源
相似解决方案