使用 String.Format 自定义格式时间跨度

发布于 2024-08-17 08:58:38 字数 277 浏览 7 评论 0原文

我想将时间跨度格式化为这样的格式 49 小时 34 分钟 20 秒

我使用了下面的字符串格式:

String.Format("{0:00}:{1:00}:{2:00}", theTimeSpan.TotalHours, theTimeSpan.Minutes, theTimeSpan.Seconds)

它将时间跨度格式化为这种格式 49:34:20。如何将 hr mn sec 添加到上面的 String.Format 中?或者还有其他简单的方法?谢谢。

I want to format the Timespan to have format like this 49 hr 34 mn 20 sec

I used the String format below:

String.Format("{0:00}:{1:00}:{2:00}", theTimeSpan.TotalHours, theTimeSpan.Minutes, theTimeSpan.Seconds)

It formats the Timespan to this format 49:34:20. How can I add hr mn sec to the String.Format above? or there's another easy way? Thank you.

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

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

发布评论

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

评论(1

仙气飘飘 2024-08-24 08:58:38

这很简单:

String.Format("{0:00} hr {1:00} mn {2:00} sec ", _
              Math.Truncate(theTimeSpan.TotalHours), _
              theTimeSpan.Minutes, theTimeSpan.Seconds)

值得熟悉字符串格式化在 .NET 中的工作原理 - 这是一个重要的话题。

不幸的是,TimeSpan 目前不支持自定义格式字符串 - 但从 .NET 4.0 开始将会如此!

That's simple:

String.Format("{0:00} hr {1:00} mn {2:00} sec ", _
              Math.Truncate(theTimeSpan.TotalHours), _
              theTimeSpan.Minutes, theTimeSpan.Seconds)

It's worth becoming familiar with how string formatting works in .NET - it's an important topic.

It's unfortunate that TimeSpan doesn't support custom format strings at the moment - but it will as of .NET 4.0!

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