标签:io ar div .net res on sp text
加上引用: using System.Text.RegularExpressions;
/// <summary>
/// 检查字符串是否是日期格式 /// </summary>
/// <param name="s">2011-5-8 8:08:05</param>
/// <returns></returns>
public static string check(string s)
{
if (Regex.IsMatch(s,
{
return s;
}
else
{
return "";
}
}
.net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式,布布扣,bubuko.com
.net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式
标签:io ar div .net res on sp text
原文地址:http://www.cnblogs.com/xuxin-1989/p/3912741.html