如何在C#中添加字符间距

时间:2015-09-08 14:04:05

标签: c# datetimepicker

string d1 = dateTimePicker1.Value.ToString("dd MM yyyy");

enter image description here

如果我自己添加空间

string d1 = dateTimePicker1.Value.ToString("d  d  M  M  y  y  y  y");

它变成这样:

enter image description here

编辑:只需重新编辑我的帖子,了解我想要的结果。

从此:2015年12月28日至 期望的结果是:2 8 1 2 2 0 1 5 在日期间距。

1 个答案:

答案 0 :(得分:8)

我建议在将DateTime转换为String

后插入空格
string d1 = DateTime.Now.ToString("ddMMyyyy");
Console.WriteLine(String.Join("  ", d1.AsEnumerable()));

结果为0 8 0 9 2 0 1 5