DateTime.TryParse问题的日期为yyyy-dd-MM格式


82

我有以下日期的字符串格式“ 2011-29-01 12:00 am”。现在,我尝试使用以下代码将其转换为日期时间格式:

DateTime.TryParse(dateTime, out dt); 

但是我总是以{1/1/0001 12:00:00 AM}作为dt,请问为什么?以及如何将该字符串转换为日期。

编辑:我刚刚看到每个人都提到使用格式参数。我现在要提到的是,我不能使用format参数,因为我有一些设置来选择用户想要的自定义dateformat,并且基于该用户,它可以通过jQuery datepicker自动以该格式获取文本框中的日期。


4
顺便说一句,您可以通过检查的返回值来确定转换是否失败TryParse。那是bool success = DateTime.TryParse(...);
Jim Mischel

Answers:


184

这应基于您的示例“ 2011-29-01 12:00 am”而起作用

DateTime dt;
DateTime.TryParseExact(dateTime, 
                       "yyyy-dd-MM hh:mm tt", 
                       CultureInfo.InvariantCulture, 
                       DateTimeStyles.None, 
                       out dt);

8
击败我。如果您知道输入字符串的格式,则实际上应该始终使用TryParseExact / ParseExact方法。
Euro Micelli 2011年

好的,所以我的日期格式类似于示例中的日期格式,但是如果日期或月份的值是一位数字,那么DateTime解析器将抛出错误,因为当只有一位时,它会寻找两位数字。在这种情况下,您有何建议?
Ciaran Gallagher 2012年

11
为了回答我自己的问题,在这种情况下,如果您使用格式中的单个字符,则它适用于单字符和双字符日期。例如,2012
-Ciaran Gallagher

@BrokenGlass这对我不起作用您能帮我吗
Meena

2
@CiaranGallagher只是一点点评论,您评论中的日期应使用大M(d / M / yyyy)
Yusril Maulidan Raji

14

您需要使用ParseExact方法。这将字符串作为第二个参数,该字符串指定datetime的格式,例如:

// Parse date and time with custom specifier.
dateString = "2011-29-01 12:00 am";
format = "yyyy-dd-MM h:mm tt";
try
{
   result = DateTime.ParseExact(dateString, format, provider);
   Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
catch (FormatException)
{
   Console.WriteLine("{0} is not in the correct format.", dateString);
}

如果用户可以在UI中指定格式,则需要将其转换为可以传递给此方法的字符串。您可以通过允许用户直接输入格式字符串来做到这一点-尽管这意味着转换很可能会失败,因为他们输入无效的格式字符串-或具有一个组合框为用户提供可能的选择,并且设置这些选项的格式字符串。

如果输入可能不正确(例如用户输入),则最好使用TryParseExact而不是使用异常来处理错误情况:

// Parse date and time with custom specifier.
dateString = "2011-29-01 12:00 am";
format = "yyyy-dd-MM h:mm tt";
DateTime result;
if (DateTime.TryParseExact(dateString, format, provider, DateTimeStyles.None, out result))
{
   Console.WriteLine("{0} converts to {1}.", dateString, result.ToString());
}
else
{
   Console.WriteLine("{0} is not in the correct format.", dateString);
}

更好的替代方法可能是为用户提供日期格式的选择,而是使用采用一系列格式重载

// A list of possible American date formats - swap M and d for European formats
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",
                   "MM/d/yyyy HH:mm:ss.ffffff" };
string dateString; // The string the date gets read into

try
{
    dateValue = DateTime.ParseExact(dateString, formats, 
                                    new CultureInfo("en-US"), 
                                    DateTimeStyles.None);
    Console.WriteLine("Converted '{0}' to {1}.", dateString, dateValue);
}
catch (FormatException)
{
    Console.WriteLine("Unable to convert '{0}' to a date.", dateString);
}                                               

如果您从配置文件或数据库中读取可能的格式,则可以在遇到人们想要输入日期的所有不同方式时将其添加到其中。


5

尝试使用安全的TryParseExact方法

DateTime temp;
string   date = "2011-29-01 12:00 am";

DateTime.TryParseExact(date, "yyyy-dd-MM hh:mm tt", CultureInfo.InvariantCulture, DateTimeStyles.None, out temp);

4

从msdn上的DateTime

类型:System.DateTime%当此方法返回时,如果转换成功,则包含与s中包含的日期和时间等效的DateTime值;如果转换失败,则包含MinValue。如果s参数为null,为空字符串(“”)或不包含日期和时间的有效字符串表示,则转换将失败。该参数未初始化传递。

请使用parseexact和格式字符串"yyyy-dd-MM hh:mm tt"


3

那个有效:

DateTime dt = DateTime.ParseExact("2011-29-01 12:00 am", "yyyy-dd-MM hh:mm tt", System.Globalization.CultureInfo.InvariantCulture);

1
DateTime dt = DateTime.ParseExact("11-22-2012 12:00 am", "MM-dd-yyyy hh:mm tt", System.Globalization.CultureInfo.InvariantCulture);

0

如果让用户有机会更改日期/时间格式,则必须创建一个相应的格式字符串以进行解析。如果您知道可能的日期格式(即用户必须从列表中选择),则这会容易得多,因为您可以在编译时创建这些格式字符串。

如果让用户对日期/时间格式进行自由格式设计,则必须DateTime在运行时创建相应的格式字符串。


是的,如果您让用户对日期/时间格式进行自由格式设计,则必须在运行时创建相应的DateTime格式字符串。
Pinal 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.