如何检查字符串日期是否可以转换为DateTime?

时间:2013-01-27 16:43:09

标签: c# asp.net sql-server sql-server-2008 datetime

有一个SQL Server 2008数据库,我必须为其创建一个管理软件。该数据库包含一个名为DateOfCreation的列。表设计者将此列作为字符串,并允许用户以他们想要的任何格式添加日期,这实际上是他的一个愚蠢的错误。现在一些用户添加了" 24月和#34;要么 " 1月24日"或" 1991 1 12"和许多未知的格式。我想要的是,当我获取此字符串日期时,应该调用一个函数来检查格式,如果日期格式不正确则返回-1,否则返回DD / MM / YYYY中的转换日期。那么如何检查字符串日期变量包含的日期格式呢?

3 个答案:

答案 0 :(得分:5)

DateTime.TryParseExact与您的日期格式一起使用,如果日期格式不同或无效,则返回false。

对于多种格式,您可以在字符串数组中指定多种格式,然后在DateTime.TryParseExact中使用它:

From MSDN - DateTime.TryParseExact Method (String, String[], IFormatProvider, DateTimeStyles, DateTime%)

string[] formats= {"M/d/yyyy h:mm:ss tt", "M/d/yyyy h:mm tt", 
                   "MM/dd/yyyy hh:mm:ss", "M/d/yyyy h:mm:ss", 
                   "M/d/yyyy hh:mm tt", "M/d/yyyy hh tt", 
                   "M/d/yyyy h:mm", "M/d/yyyy h:mm", 
                   "MM/dd/yyyy hh:mm", "M/dd/yyyy hh:mm"};
string[] dateStrings = {"5/1/2009 6:32 PM", "05/01/2009 6:32:05 PM", 
                        "5/1/2009 6:32:00", "05/01/2009 06:32", 
                        "05/01/2009 06:32:00 PM", "05/01/2009 06:32:00"}; 
DateTime dateValue;

foreach (string dateString in dateStrings)
{
   if (DateTime.TryParseExact(dateString, formats, 
                              new CultureInfo("en-US"), 
                              DateTimeStyles.None, 
                              out dateValue))
      Console.WriteLine("Converted '{0}' to {1}.", dateString, dateValue);
   else
      Console.WriteLine("Unable to convert '{0}' to a date.", dateString);
}

答案 1 :(得分:3)

DateTime.TryParse在某种程度上可能会有所帮助。但是,您将依赖于使用适当日期/时间格式的用户。

答案 2 :(得分:1)

public Tuple<bool, DateTime> GetDateTime(string x)
{
DateTime DT = null;
return Tuple.Create((DateTime.TryParse(x, out DT)), DT)
}

可能会奏效。我不能保证。