TimeSpan格式化字符串格式(摘)
一直在用DateTime, 却不常用TimeSpan , 今天突然用到了, 发现不知道咋做格式化...百度一下,找到了答案, 在这记录一下, 免得以后找花费时间
以下内容摘抄自 Microsoft Docs 原文地址: https://docs.microsoft.com/en-us/previous-versions/windows/silverlight/dotnet-windows-silverlight/ee372287(v=vs.95)
分别展示了ToString方法跟string.Format方法中的方法, 其中string.Format的用法可以在mvc的Html.TextBox的format参数中使用
这里只记录下基本用法, 更多使用参考请移步上方链接.
TimeSpan转字符串
using System; public class Example
{
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
{
TimeSpan duration = new TimeSpan(, , , ); string output = null;
output = "Time of Travel: " + duration.ToString("%d") + " days";
outputBlock.Text += output + Environment.NewLine;
output = "Time of Travel: " + duration.ToString(@"dd\.hh\:mm\:ss");
outputBlock.Text += output + Environment.NewLine; outputBlock.Text += String.Format("Time of Travel: {0:%d} day(s)",
duration) + Environment.NewLine;
outputBlock.Text += String.Format("Time of Travel: {0:dd\\.hh\\:mm\\:ss} days",
duration) + Environment.NewLine;
}
}
// The example displays the following output:
// Time of Travel: 1 days
// Time of Travel: 01.12:24:02
// Time of Travel: 1 day(s)
// Time of Travel: 01.12:24:02 days
字符串转TimeSpan
using System; public class Example
{
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
{
string value = null;
TimeSpan interval; value = "";
if (TimeSpan.TryParseExact(value, "%d", null, out interval))
outputBlock.Text += String.Format("{0} --> {1}", value,
interval.ToString("c")) + Environment.NewLine;
else
outputBlock.Text += String.Format("Unable to parse '{0}'", value) + Environment.NewLine; value = "16:32.05";
if (TimeSpan.TryParseExact(value, @"mm\:ss\.ff", null, out interval))
outputBlock.Text += String.Format("{0} --> {1}", value,
interval.ToString("c")) + Environment.NewLine;
else
outputBlock.Text += String.Format("Unable to parse '{0}'", value) + Environment.NewLine; value= "12.035";
if (TimeSpan.TryParseExact(value, "ss\\.fff", null, out interval))
outputBlock.Text += String.Format("{0} --> {1}", value,
interval.ToString("c")) + Environment.NewLine;
else
outputBlock.Text += String.Format("Unable to parse '{0}'", value) + Environment.NewLine;
}
}
// The example displays the following output:
// 6 --> 6.00:00:00
// 16:32.05 --> 00:16:32.0500000
// 12.035 --> 00:00:12.0350000
参数表格
The following table describes the custom date and time format specifiers.
|
Format specifier |
Description |
Example |
|---|---|---|
|
"d", "%d" |
The number of whole days in the time interval. More information: The "d" Custom Format Specifier. |
new TimeSpan(6, 14, 32, 17, 685): %d --> "6" d\.hh\:mm --> "6.14:32" |
|
"dd"-"dddddddd" |
The number of whole days in the time interval, padded with leading zeros as needed. More information: The "dd"-"dddddddd" Custom Format Specifiers. |
new TimeSpan(6, 14, 32, 17, 685): ddd --> "006" dd\.hh\:mm --> "06.14:32" |
|
"h", "%h" |
The number of whole hours in the time interval that are not counted as part of days. Single-digit hours do not have a leading zero. More information: The "h" Custom Format Specifier. |
new TimeSpan(6, 14, 32, 17, 685): %h --> "14" hh\:mm --> "14:32" |
|
"hh" |
The number of whole hours in the time interval that are not counted as part of days. Single-digit hours have a leading zero. More information: The "hh" Custom Format Specifier. |
new TimeSpan(6, 14, 32, 17, 685): hh --> "14" new TimeSpan(6, 8, 32, 17, 685): hh --> 08 |
|
"m", "%m" |
The number of whole minutes in the time interval that are not included as part of hours or days. Single-digit minutes do not have a leading zero. More information: The "m" Custom Format Specifier. |
new TimeSpan(6, 14, 8, 17, 685): %m --> "8" h\:m --> "14:8" |
|
"mm" |
The number of whole minutes in the time interval that are not included as part of hours or days. Single-digit minutes have a leading zero. More information: The "mm" Custom Format Specifier. |
new TimeSpan(6, 14, 8, 17, 685): mm --> "08" new TimeSpan(6, 8, 5, 17, 685): d\.hh\:mm\:ss --> 6.08:05:17 |
|
"s", "%s" |
The number of whole seconds in the time interval that are not included as part of hours, days, or minutes. Single-digit seconds do not have a leading zero. More information: The "s" Custom Format Specifier. |
TimeSpan.FromSeconds(12.965): %s --> 12 s\.fff --> 12.965 |
|
"ss" |
The number of whole seconds in the time interval that are not included as part of hours, days, or minutes. Single-digit seconds have a leading zero. More information: The "ss" Custom Format Specifier. |
TimeSpan.FromSeconds(6.965): ss --> 06 ss\.fff --> 06.965 |
|
"f", "%f" |
The tenths of a second in a time interval. More information: The "f" Custom Format Specifier. |
TimeSpan.FromSeconds(6.895): f --> 8 ss\.f --> 06.8 |
|
"ff" |
The hundredths of a second in a time interval. More information: The "ff" Custom Format Specifier. |
TimeSpan.FromSeconds(6.895): ff --> 89 ss\.ff --> 06.89 |
|
"fff" |
The milliseconds in a time interval. More information: The "fff" Custom Format Specifier. |
TimeSpan.FromSeconds(6.895): fff --> 895 ss\.fff --> 06.895 |
|
"ffff" |
The ten-thousandths of a second in a time interval. More information: The "ffff" Custom Format Specifier. |
TimeSpan.Parse("0:0:6.8954321"): ffff --> 8954 ss\.ffff --> 06.8954 |
|
"fffff" |
The hundred-thousandths of a second in a time interval. More information: The "fffff" Custom Format Specifier. |
TimeSpan.Parse("0:0:6.8954321"): fffff --> 89543 ss\.fffff --> 06.89543 |
|
"ffffff" |
The millionths of a second in a time interval. More information: The "ffffff" Custom Format Specifier. |
TimeSpan.Parse("0:0:6.8954321"): ffffff --> 895432 ss\.ffffff --> 06.895432 |
|
"fffffff" |
The ten-millionths of a second (or the fractional ticks) in a time interval. More information: The "fffffff" Custom Format Specifier. |
TimeSpan.Parse("0:0:6.8954321"): fffffff --> 8954321 ss\.fffffff --> 06.8954321 |
|
"F", "%F" |
The tenths of a second in a time interval. Nothing is displayed if the digit is zero. More information: The "F" Custom Format Specifier. |
TimeSpan.Parse("00:00:06.32"): %F: 3 TimeSpan.Parse("0:0:3.091"): ss\.F: 03. |
|
"FF" |
The hundredths of a second in a time interval. Any fractional trailing zeros or two zero digits are not included. More information: The "FF" Custom Format Specifier. |
TimeSpan.Parse("00:00:06.329"): FF: 32 TimeSpan.Parse("0:0:3.101"): ss\.FF: 03.1 |
|
"FFF" |
The milliseconds in a time interval. Any fractional trailing zeros are not included. More information: |
TimeSpan.Parse("00:00:06.3291"): FFF: 329 TimeSpan.Parse("0:0:3.1009"): ss\.FFF: 03.1 |
|
"FFFF" |
The ten-thousandths of a second in a time interval. Any fractional trailing zeros are not included. More information: The "FFFF" Custom Format Specifier. |
TimeSpan.Parse("00:00:06.32917"): FFFFF: 3291 TimeSpan.Parse("0:0:3.10009"): ss\.FFFF: 03.1 |
|
"FFFFF" |
The hundred-thousandths of a second in a time interval. Any fractional trailing zeros are not included. More information: The "FFFFF" Custom Format Specifier. |
TimeSpan.Parse("00:00:06.329179"): FFFFF: 32917 TimeSpan.Parse("0:0:3.100009"): ss\.FFFFF: 03.1 |
|
"FFFFFF" |
The millionths of a second in a time interval. Any fractional trailing zeros are not displayed. More information: The "FFFFFF" Custom Format Specifier. |
TimeSpan.Parse("00:00:06.3291791"): FFFFFF: 329179 TimeSpan.Parse("0:0:3.1000009"): ss\.FFFFFF: 03.1 |
|
"FFFFFFF" |
The ten-millions of a second in a time interval. Any fractional trailing zeros or seven zeros are not displayed. More information: The "FFFFFFF" Custom Format Specifier. |
TimeSpan.Parse("00:00:06.3291791"): FFFFFF: 3291791 TimeSpan.Parse("0:0:3.1900000"): ss\.FFFFFF: 03.19 |
|
'string' |
Literal string delimiter. More information: Other Characters. |
new TimeSpan(14, 32, 17): hh':'mm':'ss --> "14:32:17" |
|
\ |
The escape character. More information: Other Characters. |
new TimeSpan(14, 32, 17): hh\:mm\:ss --> "14:32:17" |
|
Any other character |
Any other unescaped character is interpreted as a custom format specifier. More Information: Other Characters. |
new TimeSpan(14, 32, 17): hh\:mm\:ss --> "14:32:17" |
TimeSpan格式化字符串格式(摘)的更多相关文章
- JS 字符串转日期格式 日期格式化字符串
/** * @author 陈维斌 http://www.cnblogs.com/Orange-C/p/4042242.html%20 3 * 如果想将日期字符串格式化,需先将其转换为日期类型Date ...
- 第3.11节 Python强大的字符串格式化新功能:format字符串格式化的格式控制
第3.11节 format字符串格式化的格式控制 一. 引言 上节介绍了四种format进行字符串格式化的 ...
- VBA 格式化字符串 - Format大全
VBA 格式化字符串 VBA 的 Format 函数与工作表函数 TEXT 用法基本相同,但功能更加强大,许多格式只能用于VBA 的 Format 函数,而不能用于工作表函数 TEXT ,以下是本人归 ...
- Python中用format函数格式化字符串
Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存. 1.百分号方式 语法:%[( ...
- C#定义类型转化 及 格式化字符串
operator 关键字 operator 关键字用来重载内置运算符,或提供类/结构声明中的用户定义转换.它可以定义不同类型之间采用何种转化方式和转化的结果. operator用于定义类型转化时可采用 ...
- Python格式化字符串~转
Python格式化字符串 在编写程序的过程中,经常需要进行格式化输出,每次用每次查.干脆就在这里整理一下,以便索引. 格式化操作符(%) "%"是Python风格的字符串格式化操作 ...
- 飘逸的python - 增强的格式化字符串format函数
自python2.6开始,新增了一种格式化字符串的函数str.format(),可谓威力十足.那么,他跟之前的%型格式化字符串相比,有什么优越的存在呢?让我们来揭开它羞答答的面纱. 语法 它通过{}和 ...
- [转]:C#的ToString如何格式化字符串
C 货币 2.5.ToString("C") ¥2.50 D 十进制数 25.ToString("D5") 00025 E 科学型 25000.ToString ...
- C#实现类似"hello $world"的格式化字符串方法
C#自带的string.Format可以格式化字符串,但是还是不太好用,由于格式的字符占位符都是数字,当数目较多时容易混淆.其实可以扩展string的方法,让C#的字符串具备其他的方法,下面介绍一个实 ...
随机推荐
- html 绘制矩形轨迹,选中区域
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- JDK并发工具之同步控制
一.synchronized的功能扩展:重入锁(java.util.concurrent.locks.ReentrantLock) 重入锁可以完全替代synchronized关键字.在JDK 5.0的 ...
- UI线程和工作者线程
本文转载于:http://blog.csdn.net/libaineu2004/article/details/40398405 1.线程分为UI线程和工作者线程,UI线程有窗口,窗口自建了消息队列, ...
- OAF中为MessageTextInput添加加事件处理
需求:现在OAF页面上有俩输入框,单价,数量,根据单价数量,自动计算MessageStyledText金额中的值,对应的基于EO的VO的字段为UnitPrice,Quantity,Total. 实现方 ...
- linux下批量kill进程的方法
--kill某个用户下的所有进程(用户为test)--pkill # pkill -u test--killall # killall -u test--ps # ps -ef | grep t ...
- python 绘图 异常点绘制使用 ax.plot(abnormal_points['ds'], abnormal_points['y'], "rX", label='abnormal points')
from matplotlib import pyplot as plt def my_plot(title, m, fcst, ax=None, uncertainty=True, plot_cap ...
- $digest already in progress 解决办法
Solution In short, instead of doing this: ... your controller code... $http.get('some/url', function ...
- vue2.0对不同数据类型的显示
- spring cloud学习(六)Spring Cloud Config
Spring Cloud Config 参考个人项目 参考个人项目 : (希望大家能给个star~) https://github.com/FunriLy/springcloud-study/tree ...
- PHP:第三章——PHP中的可变函数
PHP中的可变函数 <?php header("Content-Type:text/html;charset=utf-8"); function F(){ echo '999 ...