我有以下声明
DateTime now = DateTime.Now; string test = string.Format("{0}{1}{2}{3}", now.Day, now.Month, now.Year, now.Hour);
这给了我:
test = "242200915"
但是我希望有类似的东西:
test = "2402200915"
所以问题是,如何在使用零填充时强制使用字符串格式化程序输出宽度为2的每个int?
DateTime now = DateTime.Now; string test = now.ToString("ddMMyyyyHH");
你可以string.Format("{0:000} {0:D3}", 7)
用来获得007 007
这里有一个关于MSDN的有用概述:自定义数字格式字符串