摘要:
#region 验证邮箱 public static bool IsEmail(string email) { String strExp = @"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"; Regex r = new Regex(strExp); Match m = r.Match(email); return m... 阅读全文
posted @ 2016-01-12 16:03
记性特差
阅读(253)
评论(0)
推荐(0)
浙公网安备 33010602011771号