gpt4 book ai didi

javascript - 如何使用 javascript 删除数字中的千位分隔符?

转载 作者:行者123 更新时间:2023-12-04 02:22:26 30 4
gpt4 key购买 nike

<分区>

问题:

我想删除字符串中的逗号并将其作为数字。

这意味着,

  • 234,345 应该变成 234345。
  • 1,234 应该变成 1234
  • 4,567,890 应该变成 4567890

我已经创建了一个这样的代码。

let a = "5,245"
function numberWithoutCommas(x) {
return x.replace(",","");
}
const b = parseInt(numberWithoutCommas(a))
console.log(typeof(b))
console.log(b)

当字符串中有更多逗号时,这会失败。这意味着 1,234,567 给出 1234。那么有人可以帮助我实现它吗?

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com