正则表达式 (PHP) 检查子域电子邮件格式
我想验证一个接受以下格式的电子邮件地址的注册表单(它是一个子域)P
[email protected]
实际上,因为现在电子邮件可能有很多变体,是否有一个方便的正则表达式来检查电子邮件的最后部分,例如.ie 或 .com
GF
I want to validate a registration form that accepts an email address in the following format (it's a subdomain)P
[email protected]
Actually,because there can be so many variations of emails nowadays, is there a handy regex for checking just the last part of the email e.g. .ie, or .com
GF
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不需要正则表达式:
如果您有兴趣,则可以使用符合标准的正则表达式进行电子邮件验证:
Don't need Regex for this:
And if you are interested, the Standards Compliant Regex for email validation:
http://www.w3schools.com/php/filter_validate_email.asp:
这将验证好的电子邮件,包括您作为示例提供的电子邮件。
http://www.w3schools.com/php/filter_validate_email.asp:
This will validate good emails, including the one you gave as an example.