如何将字符串解析为日期时间格式?

发布于 2024-12-05 15:43:03 字数 48 浏览 3 评论 0原文

我有一个值为“August-25-2011”的字符串。如何将其解析为日期时间格式?

I have string having value "August-25-2011". How can I parse that into Datetime format?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

等风来 2024-12-12 15:43:03

尝试:

DateTime dt = DateTime.ParseExact(
    your_date, 
    "MMMM-dd-yyyy" , 
    CultureInfo.InvariantCulture);

Try:

DateTime dt = DateTime.ParseExact(
    your_date, 
    "MMMM-dd-yyyy" , 
    CultureInfo.InvariantCulture);
跨年 2024-12-12 15:43:03

试试这个。

var date = DateTime.Parse("August-25-2011");

Try this out.

var date = DateTime.Parse("August-25-2011");
埋葬我深情 2024-12-12 15:43:03
DateTime.ParseExact(
    your_date, 
    "MMMM-dd-yyyy" , 
    CultureInfo.InvariantCulture);

对于 TryParseExact

DateTime parsedDate;
string pattern = "MMMM-dd-yyyy" ;
DateTime.TryParseExact(dateValue, pattern, null, 
                                   DateTimeStyles.None, out parsedDate)

将日期和时间的指定字符串表示形式转换为其
DateTime 相当于使用指定的格式数组,
文化特定的格式信息和风格。的格式
字符串表示形式必须至少匹配一种指定格式
确切地。该方法返回一个值,该值指示是否
转换成功。

DateTime.ParseExact(
    your_date, 
    "MMMM-dd-yyyy" , 
    CultureInfo.InvariantCulture);

For TryParseExact

DateTime parsedDate;
string pattern = "MMMM-dd-yyyy" ;
DateTime.TryParseExact(dateValue, pattern, null, 
                                   DateTimeStyles.None, out parsedDate)

Converts the specified string representation of a date and time to its
DateTime equivalent using the specified array of formats,
culture-specific format information, and style. The format of the
string representation must match at least one of the specified formats
exactly. The method returns a value that indicates whether the
conversion succeeded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文