Regular Expression for formatting numbers in JavaScript

前端 未结 14 1471
遥遥无期
遥遥无期 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:19

    After so much searching, I generate a regex which accepts all formats

    (\d+[-, ,(]{0,3}\d+[-, ,(,)]{0,3}\d+[-, ,(,)]{0,3}\d+[)]{0,2})

提交回复
热议问题