vote up 5 vote down star
1

Hi,

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?

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

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

flag

What's wrong with using String.Replace()? – Jon B Apr 15 at 15:12
@Jon B - because Replace wouldn't be culture independent. What if your running on a computer where the thousand sep is . ? – Peter Lillevold Apr 15 at 15:17
and since I'm already formatting the number, it'd be cluttering the code – Luk Apr 15 at 15:21
@Peter - I belive you could use InvariantCulture and then do String.Replace(). I'm not arguing this as a good solution, I was just curious why the OP was opposed to it. – Jon B Apr 15 at 15:22

4 Answers

vote up 10 vote down check

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
    }
}
link|flag
@Jon: You're so quick... but usually to the point and exact. – Lucero Apr 15 at 15:13
That Skeet brand LoadBalancer has routing issues? – Ian Quigley Apr 15 at 15:15
Wow, Thank you Jon! – Luk Apr 15 at 15:17
vote up 0 vote down

Easiest way...

num.ToString("### ### ### ### ##0.00")

link|flag
vote up 0 vote down

String.ToString("#,#", CultureInfo.InvariantCulture);

link|flag
InvariantCulture uses a comma as a separator – Luk Apr 15 at 15:16
vote up 8 vote down

Create your own NumberFormatInfo (derivative) with a different thousand separator.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.