通常,我的电子邮件可以与[email protected]一起使用,但是不幸的是,我遇到了类似我的电子邮件也应与[email protected]一起使用的情况
regex: /^tmail\.[a-z0-9\.][email protected]$/i
最佳答案
首先,您的第一个示例是错误的,其中包含两次@。您的正则表达式期望tmail后跟.
字符。我想您是这样想的:
如果只想添加-
/^tmail\.[a-z0-9\.-][email protected]$/i
匹配:[email protected]和[email protected]
如果要按照html5标准制作(输入类型=“ email”)。
/^tmail\.[a-zA-Z0-9.!#$%&’*+/=?^_{|}~-][email protected]$/i