判断字符串格式的整型是否符合要求 publicintIsInt(stringstrInt){System.Text.RegularExpressions.RegexstrReg=newSystem.Text.RegularExpressions.Regex(@"^-?\d*$");if(strReg.IsMatch(strInt))
判断字符串格式的时间 //判断字符串格式的时间是否符合要求 public int IsDate(string strDate) { System.Text.RegularExpressions.Regex strReg = new System.Text.RegularExpressions.Regex(@"\d{4}-