gpt4 book ai didi

c# - ASP .NET C# 从军事时间更改为标准时间

转载 作者:太空宇宙 更新时间:2023-11-03 17:20:57 25 4
gpt4 key购买 nike

我有这个:

StringBuilder sb = new StringBuilder(time.Text);
if (DateTime.Parse(time.Text) > DateTime.Parse("12:00:00 AM")
&& DateTime.Parse(time.Text) < DateTime.Parse("11:59:59 AM"))
{
time.Text = time.Text + " AM";
}
else
{
time.Text = time.Text + " PM";
}

我现在是下午 16:34,

我想让它显示 04:34 PM

最佳答案

简单

string strTime = DateTime.Now.ToString(@"hh\:mm\:ss tt");

在您的情况下,它将是:

 time.Text=DateTime.Parse(time.Text).ToString(@"hh\:mm\:ss tt");

并确保自定义格式,例如 HH 是 24 小时格式,MM 是月份

关于c# - ASP .NET C# 从军事时间更改为标准时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16041208/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com