用于电子邮件验证的正则表达式。
可能的重复:
验证电子邮件地址的最佳正则表达式是什么?< /a>
我正在使用一个要求提供电子邮件地址的表格。我使用正则表达式作为
<代码>.*@.*\..*
但对于我的一些测试电子邮件 ID 来说,它不能正常工作,例如
dsrasdf@@@[电子邮件受保护]
任何人都可以为我提供正则表达式ASP.NET 中的电子邮件验证或者我可以使用任何其他方法吗?
请提出您的建议。
Possible Duplicate:
What is the best regular expression for validating email addresses?
I'm using a form which ask for email address. I used regular expression for it as
.*@.*\..*
But it is not working fine for some of my test email id like
dsrasdf@@@[email protected]
Any one provide me regular expression for the email validation in asp.net or can i use any other method for it.
Please give your suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我正在使用以下正则表达式进行电子邮件验证(不区分大小写):
我不了解 asp,但我认为您可以这样使用它。
I am using the following regular expression for my email validations (case insensitive):
I do not know about asp, but i think that you can use it like this.
最好依靠框架来处理此类内容。
Best to rely on the framework for this kind of stuff.