public static class StringExt { public static bool IsEmail(this string obj) { return Regex.IsMatch(obj,@"^\w+@\w+\.\w+$"); } } 相关文章: 2021-12-13 2021-12-20 2022-12-23 2021-09-04 2022-12-23 2022-12-23