Thursday, September 19, 2024

ASP.NET: Choose a Standard Number Format

Today, I ran into an issue regarding the way numbers are parsed in different cultures, which resulted in very wrong numbers.

The problem begins when your web application is set to automatically resolve the culture through the browser.

It is by default. All these different cultures have different ways to look at numbers and decimals and that’s all built directly into the .NET Framework.

The number one thousand decimal one two five is written differently in the various cultures. Here are some examples

1000,125 (European)
1000.125 (American)

Imagine that you have to parse XML files wherein the number format is European and you do it from an ASP.NET application with the culture set to en-US.

The result of the parsing would be 1000125 – the whole number without decimals. But if the current culture was da-DK the result would be the expected one with three decimals.

So, to make sure your localized ASP.NET application parses the same XML files the correct way every time, you have to create an IFormatProvider to use when you parse the numbers.

If the number format in the XML file (or any other place) is American, then you can use the following static property as IFormatProvider:

string number = “1000.125”;

double dbl = double.Parse(number, NumberFormat);

private static NumberFormatInfo _NumberFormat;

/// <summary>

/// Gets a non localized NumberFormatInfo

/// </summary>

public static NumberFormatInfo NumberFormat

{

  get

  {

   if (_NumberFormat == null)

   {

    _NumberFormat = new NumberFormatInfo();

    _NumberFormat.NumberDecimalSeparator = “.”;

   }

   return _NumberFormat;

  }

}

The property only handles number formats and not currency or percentage formats, but they are easily applied the same with the decimal separator is.

Comments

Tag:

Add to Del.icio.us | Digg | Reddit | Furl

Bookmark murdok:

Mads Kristensen currently works as a Senior Developer at Traceworks located
in Copenhagen, Denmark. Mads graduated from Copenhagen Technical Academy with a multimedia degree in
2003, but has been a professional developer since 2000. His main focus is on ASP.NET but is responsible for Winforms, Windows- and
web services in his daily work as well. A true .NET developer with great passion for the simple solution.

Home

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles

Create a transparent employee monitoring policy.