c#中如何用代码验证是否电子邮件(用正则)

80酷酷网    80kuku.com

  正则1.引用名称空间
using System.Text.RegularExpressions;
2.代码:

string strInput="aaa163.com";
string strExp="\w+([-+.]\w+)*\w+([-.]\w+)*\.\w+([-.]\w+)*"
// Create a new Regex object.
Regex r = new Regex(strExp);
// Find a single match in the string.
Match m = r.Match(strInput);
if (m.Success)
{
MessageBox.Show("验证成功!");
}













分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: