字符串格式:负/正浮点数
如何在 C# 中使用 String.Format
以便双精度数显示如下:
示例:
___-1.000
____1.000
__100.123
-1000.321
_1000.214
等...
其中 _ 是空格 (" "
);
我能做的就是 String.Format("{0:F3}", -123.321);
How can I use String.Format
in C# so doubles are displayed like this:
example:
___-1.000
____1.000
__100.123
-1000.321
_1000.214
etc...
Where _ is space (" "
);
All I can do is String.Format("{0:F3}", -123.321);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用对齐:
其中 10 是首选长度。
请参阅复合格式。
You can use alignment:
where 10 is preffered length.
See Composite Formatting.
找到一篇快速文章,简而言之:
来源:这里 <- 看这里了解更多。
Found a quick article, in short:
Source: Here <- Look here for more.