上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 397 下一页
  2016年1月12日
摘要: #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 记性特差 阅读(244) 评论(0) 推荐(0) 编辑
上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 397 下一页