下面是我的思路,新手.
public static bool IsEmail (string email)
{
if(!email.Contains('@'))
{
return false;
}
//根据@分割字符串
string[] strs = email.Split(new char[]{'@'},SplitOption.RemoveNull);
//判断数组长度
if(strs.Length>2)
{
return false;
}
//接下来只要判断@后面的东西即可
string str = strs[1];
.....................................
//
}
|