转换日期时间格式

转换日期时间格式

本文介绍了转换日期时间格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将 12/20/2013 17:40 格式的日期时间转换为以下格式

I am trying to convert date time in 12/20/2013 17:40 format to the below format

2013年12月20日下午05:40 .怎么可能?

推荐答案

您需要使用 DateTime.TryParseExact .这应该做到

You need to use DateTime.TryParseExact. This should do it

string originalDate = "2/20/2013 17:40";
DateTime parsedDate;
if (DateTime.TryParseExact(originalDate, "M/dd/yyyy HH:mm", CultureInfo.InvariantCulture, DateTimeStyles.None, out parsedDate))
{
     string requiredFormat = parsedDate.ToString("dd MMM yyyy hh:mm ttt");
}

输出:

20 Feb 2013 05:40 PM

这篇关于转换日期时间格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 22:47