Regular Expression for formatting numbers in JavaScript

前端 未结 14 1501
遥遥无期
遥遥无期 2020-11-30 19:35

I need to display a formatted number on a web page using JavaScript. I want to format it so that there are commas in the right places. How would I do this with a regular exp

14条回答
  •  盖世英雄少女心
    2020-11-30 20:30

    function numberWithCommas(x) {
        return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
    }
    var num=numberWithCommas(2000000); //any number
    console.log(num);
    
    enter code here
    

    Try this

提交回复
热议问题