首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

一个判断邮箱的正则有关问题

2012-02-21 
一个判断邮箱的正则问题string reg \\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*if (reg !

一个判断邮箱的正则问题
string reg = "\\w+([-+.']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*";
  if (reg != TextBox1.Text)
  {
  Response.Write("错误");
  }
  else
  {
  Response.Write("正确");
  }
就是这段代码,为什么输入什么都是提示错误呢,正确的邮箱也提示错误

[解决办法]
string reg = "\\w+([-+. ']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"; 
Match m = Regex.Match(str, reg, RegexOptions.IgnoreCase);
if (m.Success)
{
Response.Write("OK");
}

热点排行