有没有办法保持文化特定的日期时间格式,但强制12/24小时渲染?我知道我可以使用HH:mm:ss
和hh:mm:ss
之类的实际日期/时间格式字符串做很多事情,但我想尊重当前的用户文化格式(即mm/dd/yyyy
或{{1}等等,只需强制12/24小时渲染。
答案 0 :(得分:9)
' d可能会做这样的事情:
var culture = CultureInfo.CurrentCulture;
var pattern = culture.DateTimeFormat.LongTimePattern; // or pick which one you want to use;
var newPattern = pattern.Replace("h", "H").Replace("t", "");
DateTime.Now.ToString(newPattern); // or use whatever DateTime you want to use
来自聊天:
以下是所有文化的列表'长时间模式字符串,以及如何修改它们:
Old: hh:mm:ss tt New: HH:mm:ss
Old: HH:mm:ss 'ч.' New: HH:mm:ss 'ч.'
Old: HH:mm:ss New: HH:mm:ss
Old: H:mm:ss New: H:mm:ss
Old: h:mm:ss tt New: H:mm:ss
Old: tt h:mm:ss New: H:mm:ss
Old: h:mm:ss.tt New: H:mm:ss.
Old: HH.mm.ss New: HH.mm.ss
Old: tt hh:mm:ss New: HH:mm:ss
答案 1 :(得分:5)
您可以使用custom date/time format strings - 例如:
12小时渲染:
DateTime.Now.ToString("hh:mm:ss tt");
24小时渲染:
DateTime.Now.ToString("HH:mm:ss");
要与当前文化中的日期格式结合使用,您可以使用以下方法之一:
DateTime.Now.ToString("d") + DateTime.Now.ToString(" hh:mm:ss tt");
DateTime.Now.ToString(CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern +
" hh:mm:ss tt");
答案 2 :(得分:1)
这取决于你所谈论的文化。有些文化不接受24小时的时间,有些则不接受上午/下午。最安全的选择可能是InvariantCulture
。
答案 3 :(得分:0)
使用DateTime.ToShortTimeString()确保您获得适合您的文化的版本。注意:它默认使用线程的当前区域设置。
示例(来自MSDN):
// This code example demonstrates the DateTime.ToLongDateString(),
// DateTime.ToLongTimeString(), DateTime.ToShortDateString(), and
// DateTime.ToShortTimeString() methods.
using System;
using System.Threading;
using System.Globalization;
class Sample
{
public static void Main()
{
string msg1 = "The date and time patterns are defined in the DateTimeFormatInfo \n" +
"object associated with the current thread culture.\n";
// Initialize a DateTime object.
Console.WriteLine("Initialize the DateTime object to May 16, 2001 3:02:15 AM.\n");
DateTime myDateTime = new System.DateTime(2001, 5, 16, 3, 2, 15);
// Identify the source of the date and time patterns.
Console.WriteLine(msg1);
// Display the name of the current culture.
CultureInfo ci = Thread.CurrentThread.CurrentCulture;
Console.WriteLine("Current culture: \"{0}\"\n", ci.Name);
// Display the long date pattern and string.
Console.WriteLine("Long date pattern: \"{0}\"", ci.DateTimeFormat.LongDatePattern);
Console.WriteLine("Long date string: \"{0}\"\n", myDateTime.ToLongDateString());
// Display the long time pattern and string.
Console.WriteLine("Long time pattern: \"{0}\"", ci.DateTimeFormat.LongTimePattern);
Console.WriteLine("Long time string: \"{0}\"\n", myDateTime.ToLongTimeString());
// Display the short date pattern and string.
Console.WriteLine("Short date pattern: \"{0}\"", ci.DateTimeFormat.ShortDatePattern);
Console.WriteLine("Short date string: \"{0}\"\n", myDateTime.ToShortDateString());
// Display the short time pattern and string.
Console.WriteLine("Short time pattern: \"{0}\"", ci.DateTimeFormat.ShortTimePattern);
Console.WriteLine("Short time string: \"{0}\"\n", myDateTime.ToShortTimeString());
}
}
/*
This code example produces the following results:
Initialize the DateTime object to May 16, 2001 3:02:15 AM
The date and time patterns are defined in the DateTimeFormatInfo
object associated with the current thread culture.
Current culture: "en-US"
Long date pattern: "dddd, MMMM dd, yyyy"
Long date string: "Wednesday, May 16, 2001"
Long time pattern: "h:mm:ss tt"
Long time string: "3:02:15 AM"
Short date pattern: "M/d/yyyy"
Short date string: "5/16/2001"
Short time pattern: "h:mm tt"
Short time string: "3:02 AM"
*/