Click here to Skip to main content
15,884,099 members
Articles / Web Development / ASP.NET

JavaScript Number Parsing and Formatting for Multicultural Environments

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
21 Dec 2010CPOL6 min read 36K   499   15  
A JavaScript class used to help in formatting and parsing numbers when parseInt and parseFloat are not enough
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Runtime.Serialization;

namespace NumberFormatterExample
{
    [DataContract]
    public class NumberFormatInfo
    {
        [DataMember]
        public string NegativeSign { get; set; }
        [DataMember]
        public int NumberDecimalDigits { get; set; }
        [DataMember]
        public string NumberDecimalSeparator { get; set; }
        [DataMember]
        public string NumberGroupSeparator { get; set; }
        [DataMember]
        public int NumberGroupSizes { get; set; }
        [DataMember]
        public int NumberNegativePattern { get; set; }

        public NumberFormatInfo()
        {
        }

        public NumberFormatInfo(System.Globalization.NumberFormatInfo infos)
        {
            this.NegativeSign = infos.NegativeSign;
            this.NumberDecimalDigits = infos.NumberDecimalDigits;
            this.NumberDecimalSeparator = infos.NumberDecimalSeparator;
            this.NumberGroupSeparator = infos.NumberGroupSeparator;
            if(infos.NumberGroupSizes.Length > 0)
                this.NumberGroupSizes = infos.NumberGroupSizes[0];
            this.NumberNegativePattern = infos.NumberNegativePattern;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder
Canada Canada
From the beginning i have always been passionate about everything. I have never actually studied in computer programming but life brought me in IT departments from the beginning of my career. The more i programmed the more i liked it. Ever since, i've been hooked.

Comments and Discussions