格式化括号中的负数但不使用 $ 符号?

发布于 2024-12-19 09:57:30 字数 155 浏览 3 评论 0原文

我在互联网上看到过用括号和 $ 符号格式化负双精度值,即。货币类型。

我正在寻找 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

客…行舟 2024-12-26 09:57:30

MSDN 上的条件格式来救援!

您可以一次指定格式字符串的三个不同部分,并用分号分隔它们。如果指定两个格式字符串部分,第一个用于正值和零值,第二个用于负值;如果使用三个部分,第一个用于正值,第二个用于负值,第三个用于零值。

此 C# 代码的输出

        string fmt1 = "#,##0.00";
        string fmt2 = "#,##0.00;(#,##0.00)";
        double posAmount = 12345.67;
        double negAmount = -12345.67;
        Console.WriteLine("posAmount.ToString(fmt1) returns " + posAmount.ToString(fmt1));
        Console.WriteLine("negAmount.ToString(fmt1) returns " + negAmount.ToString(fmt1));
        Console.WriteLine("posAmount.ToString(fmt2) returns " + posAmount.ToString(fmt2));
        Console.WriteLine("negAmount.ToString(fmt2) returns " + negAmount.ToString(fmt2));

是:

posAmount.ToString(fmt1) returns 12,345.67
negAmount.ToString(fmt1) returns -12,345.67
posAmount.ToString(fmt2) returns 12,345.67
negAmount.ToString(fmt2) returns (12,345.67)

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:

        string fmt1 = "#,##0.00";
        string fmt2 = "#,##0.00;(#,##0.00)";
        double posAmount = 12345.67;
        double negAmount = -12345.67;
        Console.WriteLine("posAmount.ToString(fmt1) returns " + posAmount.ToString(fmt1));
        Console.WriteLine("negAmount.ToString(fmt1) returns " + negAmount.ToString(fmt1));
        Console.WriteLine("posAmount.ToString(fmt2) returns " + posAmount.ToString(fmt2));
        Console.WriteLine("negAmount.ToString(fmt2) returns " + negAmount.ToString(fmt2));

is:

posAmount.ToString(fmt1) returns 12,345.67
negAmount.ToString(fmt1) returns -12,345.67
posAmount.ToString(fmt2) returns 12,345.67
negAmount.ToString(fmt2) returns (12,345.67)
始终不够爱げ你 2024-12-26 09:57:30

您可以使用 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

毁虫ゝ 2024-12-26 09:57:30

您应该更改您正在使用的区域性的NegativePattern,或者将其更改为当前线程的默认区域性。

不同的模式可以是 在这里找到

void Main()
{
    CultureInfo cultureInfo = (CultureInfo)Thread.CurrentThread.CurrentCulture.Clone();
    cultureInfo.NumberFormat.CurrencyNegativePattern = 1;
    Thread.CurrentThread.CurrentCulture = cultureInfo;
}

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

void Main()
{
    CultureInfo cultureInfo = (CultureInfo)Thread.CurrentThread.CurrentCulture.Clone();
    cultureInfo.NumberFormat.CurrencyNegativePattern = 1;
    Thread.CurrentThread.CurrentCulture = cultureInfo;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文