欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c#判断email地址是否为合法

程序员文章站 2023-02-02 14:53:32
题目要求: 关键代码如下所示: class program { static void main(string[] args) { console....

题目要求:

c#判断email地址是否为合法

关键代码如下所示:

class program
{
static void main(string[] args)
{
console.writeline("请输入正确的邮箱地址,以 @sina.com 结尾");
string us =convert.tostring(console.readline());
string str1 = us.replace("@", "");
int count = us.length - str1.length;
string str2 = us.replace(".", "");
int count2 = us.length - str2.length;
int count3 = us.length - 1;
int xl=us.indexof(".")-us.indexof("@");
bool mw = (us.indexof("@sina.com") == (us.length-9));
while (count == 1 && count2 == 1 && us.indexof("@") > 0 && us.indexof(".") > us.indexof("@") 
&& us.indexof(".")<count3)
{
if (xl != 1 && us.contains("@sina.com") && mw)
{
console.writeline("正确");
}
else {
console.writeline("输入的邮箱地址有误");
}
break;
}
console.readline();
}
}

以上所述是小编给大家介绍的c#判断email地址是否为合法,希望对大家有所帮助