将字符串转换为datetime问题

时间:2012-08-17 18:20:52

标签: c#

我一直在网上寻找一个例子来解决我的问题,将字符串转换为datetime。

我想将en-us(mm / dd / yyyy)转换为荷兰比利时(dd / mm / yyyy)日期时间。 你能告诉我一个有效的例子吗?

为了您的信息,我尝试过Convert.ToDateTime,Parse,TryParse,ParseExact等,但没有一个正常工作。我真的很喜欢这个转换的例子,没有任何徒劳的链接。


Upate

我得到的错误是:字符串未被识别为有效的DateTime。 我尝试过:

----------------
string str = "02/20/2012";
DateTime dt = Convert.ToDateTime(str);
---------------------
IFormatProvider theCultureInfo = new System.Globalization.CultureInfo("nl-BE", true);
DateTime theDateTime = DateTime.ParseExact(deliveryDate, "dd/mm/yyyy", theCultureInfo);
Console.WriteLine(dt);
----------------------
var parsed = DateTime.ParseExact("02/20/2012","dd/mm/yyyy", null);
---------------

dateValue = DateTime.Parse(dateString, new CultureInfo("nl-BE", false));

以及其他一些我现在不记得的例子。但所有领导都没有。

2 个答案:

答案 0 :(得分:7)

使用这些方法重载:

并将CultureInfo.DateTimeFormat传递给他们:

string enUsDateString = "12/31/2012";
IFormatProvider enUsDateFormat = new CultureInfo("en-US").DateTimeFormat;

DateTime date = DateTime.Parse(enUsDateString, enUsDateFormat);

IFormatProvider nlBeDateFormat = new CultureInfo("nl-BE").DateTimeFormat;
string nlBeDateString = date.ToString(nlBeDateFormat);

但是,这也将包括输出中的时间组件。如果您不想这样,请尝试例如:

IFormatProvider nlBeDateFormat = new CultureInfo(…).DateTimeFormat.ShortDatePattern;
//                                                                ^^^^^^^^^^^^^^^^^

答案 1 :(得分:0)

这对我来说很好:

DateTime date = 
DateTime.ParseExact("20122018", "dd/MM/yyyy", 
                   CultureInfo.CurrentCulture);