判断字符串格式的时间

jixiang31141 51 0 TXT 2019-02-21 23:02:48

//判断字符串格式的时间是否符合要求 public int IsDate(string strDate) { System.Text.RegularExpressions.Regex strReg = new System.Text.RegularExpressions.Regex(@"\d{4}-\d{1,2}-\d{1,2}"); if (strReg.IsMatch(strDate)) { return 1; } else { r

用户评论
请输入评论内容
评分:
暂无评论