格式化括号中的负数但不使用 $ 符号?
我在互联网上看到过用括号和 $
符号格式化负双精度值,即。货币类型。
我正在寻找 .NET 格式字符串来格式化
12345.67 = 12,345.67
-12345.67 = (12,345.67)
I have seen all over the internet to format a NEGATIVE double value with a parenthesis WITH a $
symbol ie. currency type.
I am looking for a .NET format string, to format
12345.67 = 12,345.67
-12345.67 = (12,345.67)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MSDN 上的条件格式来救援!
您可以一次指定格式字符串的三个不同部分,并用分号分隔它们。如果指定两个格式字符串部分,第一个用于正值和零值,第二个用于负值;如果使用三个部分,第一个用于正值,第二个用于负值,第三个用于零值。
此 C# 代码的输出
是:
MSDN on conditional formatting to the rescue!
You can specify up to three different sections of your format string at once, separating them with semicolons. If you specify two format string sections, the first is used for positive and zero values while the second is used for negative values; if you use three sections, the first is used for positive values, the second for negative values, and the third for zero values.
The output from this C# code:
is:
您可以使用 FormatNumber 函数:
FormatNumber(-100, UseParensForNegativeNumbers:=TriState.True)
将返回“(100)”
MSDN
You can use the FormatNumber function:
FormatNumber(-100, UseParensForNegativeNumbers:=TriState.True)
will return "(100)"
There's more on MSDN
您应该更改您正在使用的区域性的
NegativePattern
,或者将其更改为当前线程的默认区域性。不同的模式可以是 在这里找到
You should change the
NegativePattern
for the culture you are using, or change it for the current thread's default culture.The different patterns can be found here