在 C# 中使用自定义千位分隔符

Use a custom thousand separator in C#(在 C# 中使用自定义千位分隔符)
本文介绍了在 C# 中使用自定义千位分隔符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在显示字符串时不使用,"字符作为千位分隔符,而是使用空格.我想我需要定义一种自定义文化,但我似乎没有做对.有什么指点吗?

I'm trying not to use the ',' char as a thousand separator when displaying a string, but to use a space instead. I guess I need to define a custom culture, but I don't seem to get it right. Any pointers?

例如:将 1000000 显示为 1 000 000 而不是 1,000,000

eg: display 1000000 as 1 000 000 instead of 1,000,000

(不,String.Replace() 不是我想使用的解决方案:P)

(no, String.Replace() is not the solution I'd like to use :P)

推荐答案

建议你找一个NumberFormatInfo 最接近你想要的(即它与千位分隔符分开),调用 Clone() 就可以了,然后设置 NumberGroupSeparator 属性.(如果您要使用货币格式格式化数字,您需要更改 CurrencyGroupSeparator 代替/以及.)将其用作调用 string.Format 等的格式信息,你应该没问题.例如:

I suggest you find a NumberFormatInfo which most closely matches what you want (i.e. it's right apart from the thousands separator), call Clone() on it and then set the NumberGroupSeparator property. (If you're going to format the numbers using currency formats, you need to change CurrencyGroupSeparator instead/as well.) Use that as the format info for your calls to string.Format etc, and you should be fine. For example:

using System;
using System.Globalization;

class Test
{
    static void Main()
    {
        NumberFormatInfo nfi = (NumberFormatInfo)
            CultureInfo.InvariantCulture.NumberFormat.Clone();
        nfi.NumberGroupSeparator = " ";

        Console.WriteLine(12345.ToString("n", nfi)); // 12 345.00
    }
}

这篇关于在 C# 中使用自定义千位分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)