标签: javascript input
可能重复: Javascript Thousand Separator / string format
我的问题是:如何分隔数字/1000; 所以我想"1243234"到"1 243 234" 或"1000"到"1 000"等 (对不起我的英文= /)
/1000
"1243234"
"1 243 234"
"1000"
"1 000"
答案 0 :(得分:4)
> "1243234".replace(/\d(?=(\d{3})+$)/g, "$& ") "1 243 234"