判断字符串是否是email格式 正则表达式

前端之家收集整理的这篇文章主要介绍了判断字符串是否是email格式 正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/**
 * 确认字符串是否为email格式
 *
 * @param strEmail
 * @return
 */
public static boolean isEmail(String strEmail) {
    String strPattern = "^[a-zA-Z][\\w\\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\\w\\.-]*[a-zA-Z0-9]\\.[a-zA-Z][a-zA-Z\\.]*[a-zA-Z]$";
    Pattern p = Pattern.compile(strPattern);
    Matcher m = p.matcher(strEmail);
    return m.matches();
}
原文链接:https://www.f2er.com/regex/361633.html

猜你在找的正则表达式相关文章