I feed a textbox a string value showing me a balance that need to be formatted like this:

###,###,###,##0.00

I could use the value.ToString("c"), but this would put the currency sign in front of it.

Any idea how I would manipulate the string before feeding the textbox to achieve the above formatting?

I tried this, without success:

String.Format("###,###,###,##0.00", currentBalance);

Many Thanks,

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted
string forDisplay = currentBalance.ToString("N2");
link|improve this answer
This isn't acceptable because if the negative symbol for currency in the culture is () and the negative symbol for decimals is -, the currency representation will be incorrect. – Bob Mar 8 '11 at 14:31
@Bob: This is the accepted answer so it is, by definition, acceptable to the OP. Since there's no built-in format specifier for "format like a currency but without the currency symbol" some sort of manual processing would be required in that situation: either (1) use a custom NumberFormatInfo as per Jon's answer, (2) use a custom format string, or (3) call ToString("c") and then post-process to remove the symbol. – LukeH Mar 8 '11 at 15:11
@LukeH: Although this is the accepted answer the answer that Jon Skeet gives is more correct in the sense that it uses the Currency formattings provided by NumberFormatInfo. – Benjamin Wegman Feb 7 at 14:23
I wish I could downvote the "it's acceptable because it's accepted" comment. – D. Patrick Apr 16 at 15:19
@D. Patrick: Why? I also find it frustrating when an accepted answer is out-and-out wrong or misleading, but in this case I'm correctly answering the question asked, and presumably that's why the OP chose this as their accepted answer. (Admittedly there's a discrepancy between the question title and what's asked in the question body, but if that's a problem for you then perhaps you could raise the issue with the OP.) – LukeH Apr 16 at 15:40
show 1 more comment
feedback

If the currency formatting gives you exactly what you want, clone a NumberFormatInfo with and set the CurrencySymbol property to "". You should check that it handles negative numbers in the way that you want as well, of course.

For example:

using System;
using System.Globalization;

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

        Console.WriteLine(string.Format(nfi, "{0:c}", 123.45m));
        nfi.CurrencySymbol = "";
        Console.WriteLine(string.Format(nfi, "{0:c}", 123.45m));
    }
}

The other option is to use a custom numeric format string of course - it depends whether you really want to mirror exactly how a currency would look, just without the symbol, or control the exact positioning of digits.

link|improve this answer
This works perfectly. If you want currency to be formatted as the current culture but without the symbol, this seems to be the best solution. – Bob Mar 8 '11 at 15:07
You might consider adding a Trim() to the result to make sure you have no leading (or trailing) spaces. – Benjamin Wegman Feb 7 at 14:30
1  
@BenjaminWegman: I'd assume that if the culture-sensitive currency format included whitespace, it's there for some good reason. – Jon Skeet Feb 7 at 14:34
feedback

Have you tried:

currentBalance.ToString("#,##0.00");

This is the long-hand equivalent of:

currentBalance.ToString("N2");
link|improve this answer
feedback
CultureInfo cultureInfo = new CultureInfo("en-US");
cultureInfo.NumberFormat.CurrencySymbol = "Rs.";

Thread.CurrentThread.CurrentCulture = cultureInfo;
decimal devimalValue = 3.45M;
this.Text = devimalValue.ToString("C2"); //Rs.3.45
link|improve this answer
feedback

string result=string.Format("{0:N2}", value); //For result like ### ### ##.##

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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