Results 1 to 5 of 5

Thread: Add commas to a numeric value

  1. #1
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default Add commas to a numeric value

    Hi,
    I'm wondering how you would add commas to a number, say, in an <input> tag.
    Ex.
    1
    12
    123
    1,234
    12,345
    123,456
    1,234,567

    I really want to know how to do this! I've seen similar scripts, but it is very confusing. Thank-you.
    - Mike

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
    Number.prototype.withThousandsSeparator = function(sep) {
      var s = this.toString(),
        y = (s.indexOf(".") > -1 ? s.substring(s.indexOf(".")) : "");
      if(y) s = s.substring(0, s.indexOf("."));
      for(var i = s.length - 3;i > 0;i -= 3) {
        var front = s.substring(0, i),
          back = s.substring(i);
        s = front + sep + back;
      }
      return s + y;
    }
    Last edited by Twey; 07-22-2006 at 11:55 PM.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    How do I access this function?
    - Mike

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
    var num = 1234567;
    window.alert(num.withThousandsSeparator(','));
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    Wow you're good
    - Mike

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •