public static class StringExt
{
public static bool IsEmail(this string obj)
{
return Regex.IsMatch(obj,@"^\[email protected]\w+\.\w+$");
}
}
时间: 2024-10-26 20:25:58
public static class StringExt
{
public static bool IsEmail(this string obj)
{
return Regex.IsMatch(obj,@"^\[email protected]\w+\.\w+$");
}
}