String.Format("{0:C2}", -1234) (Currency format) treats negative numbers as positive - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T23:00:28Zhttp://stackoverflow.com/feeds/question/1001114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1001114/string-format0c2-1234-currency-format-treats-negative-numbers-as-posit0String.Format("{0:C2}", -1234) (Currency format) treats negative numbers as positiveShimmy2009-06-16T12:18:11Z2009-06-16T12:49:24Z
<p>Hi I am using String.Format("{0:C2}", -1234)</p>
<p>to format numbers.</p>
<p>is always formats the amount to a positive number, while I want it to become $<strong>-</strong>1234</p>
http://stackoverflow.com/questions/1001114/string-format0c2-1234-currency-format-treats-negative-numbers-as-posit/1001147#10011476Answer by Jon Skeet for String.Format("{0:C2}", -1234) (Currency format) treats negative numbers as positiveJon Skeet2009-06-16T12:24:14Z2009-06-16T12:36:58Z<p>Am I right in saying it's putting it in brackets, i.e. it's formatting it as <code>($1,234.00)</code> ? If so, I believe that's the intended behaviour for the US.</p>
<p>However, you can create your own <code>NumberFormatInfo</code> which doesn't behave this way. Take an existing <code>NumberFormatInfo</code> which is "mostly right", call <code>Clone()</code> to make a mutable copy, and then set the <a href="http://msdn.microsoft.com/en-us/library/system.globalization.numberformatinfo.currencynegativepattern.aspx" rel="nofollow"><code>CurrencyNegativePattern</code></a> appropriately (I think you want value 2).</p>
<p>For example:</p>
<pre><code>using System;
using System.Globalization;
class Test
{
static void Main()
{
var usCulture = CultureInfo.CreateSpecificCulture("en-US");
var clonedNumbers = (NumberFormatInfo) usCulture.NumberFormat.Clone();
clonedNumbers.CurrencyNegativePattern = 2;
string formatted = string.Format(clonedNumbers, "{0:C2}", -1234);
Console.WriteLine(formatted);
}
}
</code></pre>
<p>This prints $-1,234.00. If you actually want exactly $-1234, you'll need to set the <a href="http://msdn.microsoft.com/en-us/library/system.globalization.numberformatinfo.currencygroupsizes.aspx" rel="nofollow"><code>CurrencyGroupSizes</code></a> property to <code>new int[]{0}</code> and use <code>"{0:C0}"</code> instead of <code>"{0:C2}"</code> as the format string.</p>
<p>EDIT: Here's a helper method you can use which basically does the same thing:</p>
<pre><code>private static readonly NumberFormatInfo CurrencyFormat = CreateCurrencyFormat();
private static NumberFormatInfo CreateCurrencyFormat()
{
var usCulture = CultureInfo.CreateSpecificCulture("en-US");
var clonedNumbers = (NumberFormatInfo) usCulture.NumberFormat.Clone();
clonedNumbers.CurrencyNegativePattern = 2;
return clonedNumbers;
}
public static string FormatCurrency(decimal value)
{
return value.ToString("C2", CurrencyFormat);
}
</code></pre>
http://stackoverflow.com/questions/1001114/string-format0c2-1234-currency-format-treats-negative-numbers-as-posit/1001252#10012521Answer by Shimmy for String.Format("{0:C2}", -1234) (Currency format) treats negative numbers as positiveShimmy2009-06-16T12:43:48Z2009-06-16T12:49:24Z<p>I think I will simply use:</p>
<pre><code>FormatCurrency(-1234.56, 2, UseParensForNegativeNumbers:=TriState.False)
</code></pre>
<p>(in Microsoft.VisualBasic.Strings module)</p>
<p>Or in shorter words (this is what im actually going to use):</p>
<pre><code>FormatCurrency(-1234.56, 2, 0, 0)
</code></pre>
<p>Or I will make myself a custom formatcurrency function that uses the VB function passing my custom params.</p>
<p>For further details take a look at the <a href="http://msdn.microsoft.com/en-us/library/3352e6f5%28VS.80%29.aspx" rel="nofollow">FormatCurrency Function (Visual Basic)</a> in the msdn.</p>