Format decimal as currency based on currency code

11,378

Solution 1

You could build a dictionary to go from ISO currency symbol (USD) to currency symbol ($):

static void Main(string[] args)
{
    var symbols = GetCurrencySymbols();

    Console.WriteLine("{0}{1:0.00}", symbols["USD"], 1.5M);
    Console.WriteLine("{0}{1:0.00}", symbols["JPY"], 1.5M);

    Console.ReadLine();
}

static IDictionary<string, string> GetCurrencySymbols()
{
    var result = new Dictionary<string, string>();

    foreach (var ci in CultureInfo.GetCultures(CultureTypes.AllCultures))
    {
        try
        {
            var ri = new RegionInfo(ci.Name);
            result[ri.ISOCurrencySymbol] = ri.CurrencySymbol;                    
        }
        catch { }
    }

    return result;
}

That's the basic idea, you'll need to tweak that to suit your needs.

Note that you can certainly use the CultureInfo class to convert to a string for a specific culture, but as noted in Alexei's comment, that will cause each string to be a little different (like 1.00 vs 1,00). Whichever you use depends on your needs.

Solution 2

public static class DecimalExtension
{
    private static readonly Dictionary<string, CultureInfo> ISOCurrenciesToACultureMap =
        CultureInfo.GetCultures(CultureTypes.SpecificCultures)
            .Select(c => new {c, new RegionInfo(c.LCID).ISOCurrencySymbol})
            .GroupBy(x => x.ISOCurrencySymbol)
            .ToDictionary(g => g.Key, g => g.First().c, StringComparer.OrdinalIgnoreCase);

    public static string FormatCurrency(this decimal amount, string currencyCode)
    {
        CultureInfo culture;
        if (ISOCurrenciesToACultureMap.TryGetValue(currencyCode, out culture))
            return string.Format(culture, "{0:C}", amount);
        return amount.ToString("0.00");
    }
}

Here are the results of calling FormatCurrency for a few different currency codes:

decimal amount = 100;

amount.FormatCurrency("AUD");  //$100.00
amount.FormatCurrency("GBP");  //£100.00
amount.FormatCurrency("EUR");  //100,00 €
amount.FormatCurrency("VND");  //100,00 ?
amount.FormatCurrency("IRN");  //? 100.00

Solution 3

Should be done by passing the CultureInfo:

CultureInfo ci = new CultureInfo("en-GB");
amount.ToString("C", ci);
Share:
11,378
Superman
Author by

Superman

Updated on June 04, 2022

Comments

  • Superman
    Superman almost 2 years

    I have a table of charges with the amount, and the currency code (USD, JPY, CAD, EUR etc.), and am looking for the easiest way to properly format the currency. Using my local culture code (USA) and taking my decimal.ToString("c") gets me $0.00 output, but I'd like the correct currency sign and number of decimals based on the code.

    Do any libraries exist for this? I can of course write up a switch statement and custom rules for each one, but thought this must have been done before.

    Update:

    I've modified Jon B's sample code as follows

    static IDictionary<string, string> GetCurrencyFormatStrings()
    {
        var result = new Dictionary<string, string>();
    
        foreach (var ci in CultureInfo.GetCultures(CultureTypes.AllCultures))
        {
            try
            {
                var ri = new RegionInfo(ci.Name);
                result[ri.ISOCurrencySymbol] =
                      string.Format("{0}#,#0.{1};({0}#,#0.{1})",
                                    ri.CurrencySymbol,
                                    new string('0', 
                                    i.NumberFormat.CurrencyDecimalDigits));
            }
            catch { }
        }
    
        return result;
    }
    

    This allows me to simply go Amount.ToString(Currency["JPY"]), and the format will output the comma separator in my local context, but put the correct currency symbol and decimal places in automatically.

    Let me know if anyone has a cleaner way of doing this, or I will mark Jon's answer as correct shortly.

  • Alexei Levenkov
    Alexei Levenkov over 11 years
    +0. I don't think it will give @Superman result that looks reasonable - number formatting portion of the output will not match if 2 currency values are using different decimal separator (i.e. USD and EUR would be something like $1.23 and "Eur"1,23 - an one of the numbers will look like 123 to the reader depending on reader's locale).
  • Superman
    Superman over 11 years
    This looks pretty close - Not all currencies have 2 decimal places (the smallest increment in yen is 1), is this in the region info as well?
  • Superman
    Superman over 11 years
    Looks like referring to ci.NumberFormat.CurrencyDecimalDigits gets me everything I need - thanks!
  • Nicholas Carey
    Nicholas Carey over 11 years
    You're going to have problems with countries like India, which has 14 languages, with multiple currency symbols (depending on language), and multiple currency formats (again, dependent upon language). Further, @Superman probably doesn't want to use the currency symbol for India's RegionInfo (रु) for the Indian rupee; I suspect his customers/users would prefer to see the currency symbol for the specific culture "en-IN" (Rs.) rather than something they will most likely read as 'squiggle'. Doing this stuff well is hard and requires a lot of cultural knowledge.
  • Chad Hedgcock
    Chad Hedgcock about 7 years
    Great snippet, but it's better to use c.Name instead of c.LCID because you can get machine-specific CultureNotFoundExceptions
  • Chandler
    Chandler over 5 years
    Thanks very much @ChadHedgcock , you made my day!
  • Zodman
    Zodman about 4 years
    This such a corner case, but when you need it it is amazingly useful. Thank you so much jignesh and @ChadHedgcock.