//正则式的使用 private bool SaveInfo(string ph1) { string reg=@"(86)*0*13\d{9}"; if(!Regex.Match(ph1,reg).Success) { throw new Class1("格式错误!"); } return true; } 继续阅读