gpt4 book ai didi

c# - 字符串格式 : negative/positive floating point numbers

转载 作者:太空狗 更新时间:2023-10-30 00:35:32 25 4
gpt4 key购买 nike

如何使用 String.Format在 C# 中, double 显示如下:

example:<br/>
___-1.000<br/>
____1.000<br/>
__100.123<br/>
-1000.321<br/>
_1000.214

等...

其中 _ 是空格 ( " " );

我能做的就是String.Format("{0:F3}", -123.321);

最佳答案

您可以使用对齐方式:

String.Format("{0,10:F3}", -123.321)

其中 10 是首选长度。

参见 Composite Formatting .

关于c# - 字符串格式 : negative/positive floating point numbers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4356185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com