本文介绍了字符串格式:负/正浮点数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在C#中使用 String.Format
,所以双打显示如下:
示例:
___- 1.000
____ 1.000
__100.123
-1000.321
_1000.214
等...
哪里_是空格);
我所能做的只是 String.Format({0 :F3},-123.321);
解决方案
String.Format({0,10:F3},-123.321)
pre>
其中10是优先长度。
请参阅。
How can I use
String.Format
in C# so doubles are displayed like this:
example:
___-1.000
____1.000
__100.123
-1000.321
_1000.214etc...
Where _ is space (
" "
);All I can do is
String.Format("{0:F3}", -123.321);
解决方案You can use alignment:
String.Format("{0,10:F3}", -123.321)
where 10 is preffered length.
See Composite Formatting.
这篇关于字符串格式:负/正浮点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!