加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

验证邮箱的正则表达式

发布时间:2020-12-13 23:00:20 所属栏目:百科 来源:网络整理
导读:String pat = "^([a-z0-9A-Z]+[-|.]?)+[a-z0-9A-Z]@([a-z0-9A-Z]+(-[a-z0-9A-Z]+)?.)+[a-zA-Z]{3,}$";Pattern p = Pattern.compile(pat);Matcher m = p.matcher(email);// 邮箱格式不对if (!m.matches()) {Toast.makeText(context,"邮箱格式不正确",Toas


String pat = "^([a-z0-9A-Z]+[-|.]?)+[a-z0-9A-Z]@([a-z0-9A-Z]+(-[a-z0-9A-Z]+)?.)+[a-zA-Z]{3,}$";
		Pattern p = Pattern.compile(pat);
		Matcher m = p.matcher(email);
		// 邮箱格式不对
		if (!m.matches()) {
			Toast.makeText(context,"邮箱格式不正确",Toast.LENGTH_SHORT).show();
			return false;
		}

^:字符串头部

[a-z0-9A-Z]:表示大小写字母和数字

[a-zA-Z]{3,}:3个字母以上

$:字符串尾部

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读