通过Regex验证电子邮件列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Regex验证电子邮件列表相关的知识,希望对你有一定的参考价值。

  1. Regex matchRegex = new Regex(@"[a-zA-Z0-9_-.][email protected][a-zA-Z0-9_-.]+.[a-zA-Z]{2,5}");
  2. MatchCollection matches =
  3. if ( matches.Count > 0)
  4. {
  5. for ( int i = 0; i <>
  6. {
  7. // You can process the email matched
  8. // for example you can check if it's a real email address or not.
  9. // by pinging the mail provider.
  10. ProcessEmailAddress(matches[i].Value);
  11. }
  12. }

以上是关于通过Regex验证电子邮件列表的主要内容,如果未能解决你的问题,请参考以下文章

相对于 mailAddress 类,Regex 是不是稳定用于电子邮件验证?

电子邮件验证PHP Regex

PHP PHP(RegEx)电子邮件地址验证

PHP regex电子邮件验证

PHP(RegEx)电子邮件地址验证

编辑电子邮件的文本字段不验证电子邮件地址?