TimeSpan 删除秒数

发布于 2024-10-18 21:25:41 字数 144 浏览 6 评论 0原文

如何从 C# 中的时间跨度对象中截断秒位?即 15:37

我正在以 HH:mm 的格式将时间跨度对象输出到 JavaScript,并且希望服务器端处理提供正确的格式而不是客户端浏览器,是否可以在不将其提供为 C# 字符串对象的情况下完成JavaScript?

How do you truncate the seconds bit from a timespan object in C#? i.e. 15:37

I'm outputting a timespan object to JavaScript in the format of HH:mm and kind of want the server side to process providing the correct format instead of clients browsers, can that be done without providing this as a C# string object to JavaScript?

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

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

发布评论

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

评论(5

只等公子 2024-10-25 21:25:42

您可以为此使用格式字符串:

public string GetTimeSpanAsString(TimeSpan input)
{
    return input.ToString(@"hh\:mm");
}

You can use a format string for that:

public string GetTimeSpanAsString(TimeSpan input)
{
    return input.ToString(@"hh\:mm");
}
虐人心 2024-10-25 21:25:42

您可以截断作为 TimeSpan 核心的“ticks”值:

TimeSpan t1 = TimeSpan.FromHours(1.551);
Console.WriteLine(t1);
TimeSpan t2 = new TimeSpan(t1.Ticks - (t1.Ticks % 600000000));
Console.WriteLine(t2);

给出:

01:33:03.6000000
01:33:00

You can truncate the 'ticks' value which is the core of a TimeSpan:

TimeSpan t1 = TimeSpan.FromHours(1.551);
Console.WriteLine(t1);
TimeSpan t2 = new TimeSpan(t1.Ticks - (t1.Ticks % 600000000));
Console.WriteLine(t2);

Gives:

01:33:03.6000000
01:33:00
佼人 2024-10-25 21:25:42

也许不是最佳的,但很容易阅读:

TimeSpan.FromMinutes((long)duration.TotalMinutes);

Maybe not optimal, but easy to read:

TimeSpan.FromMinutes((long)duration.TotalMinutes);
那一片橙海, 2024-10-25 21:25:42

我相信这就是您正在寻找的。

string.Format("{0:H:mm}",myTime)

I believe this is what you're looking for.

string.Format("{0:H:mm}",myTime)
沙沙粒小 2024-10-25 21:25:42

也许是这样的。使用整数除法的截断,然后乘以除数,将截断为分钟。

return TimeSpan.FromTicks(input.Ticks/TicksPerMinute*TicksPerMinute);

Perhaps something like this. This truncates to minutes using the truncation of an integer division, followed by a multiplication by the divisor.

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