使用 String.Format 自定义格式时间跨度
我想将时间跨度格式化为这样的格式 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很简单:
值得熟悉字符串格式化在 .NET 中的工作原理 - 这是一个重要的话题。
不幸的是,
TimeSpan
目前不支持自定义格式字符串 - 但从 .NET 4.0 开始将会如此!That's simple:
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!