首页 > 开发 > 综合 > 正文

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

2024-07-21 02:19:02
字体:
来源:转载
供稿:网友
1.引用名称空间
using system.text.regularexpressions;
2.代码:

string strinput="[email protected]";
string [email protected]"/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("验证成功!");
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表