在 JavaScript / jQuery 中,将带逗号的数字转换为整数的最佳方法是什么?

发布于 2024-09-30 08:44:37 字数 119 浏览 4 评论 0原文

我想将字符串“15,678”转换为值 15678。方法 parseInt()parseFloat() 都为“15,678”返回 15。有没有简单的方法可以做到这一点?

I want to convert the string "15,678" into a value 15678. Methods parseInt() and parseFloat() are both returning 15 for "15,678." Is there an easy way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

倾其所爱 2024-10-07 08:44:37

最简单的选项是删除所有逗号: parseInt(str.replace(/,/g, ''), 10)

The simplest option is to remove all commas: parseInt(str.replace(/,/g, ''), 10)

纸短情长 2024-10-07 08:44:37

一种方法是使用: 删除所有逗号

strnum = strnum.replace(/\,/g, '');

,然后将其传递给 parseInt:

var num = parseInt(strnum.replace(/\,/g, ''), 10);

但这里需要小心。使用逗号作为千位分隔符是一种文化。在某些地区,数字 1,234,567.89 将写作 1.234.567,89

One way is to remove all the commas with:

strnum = strnum.replace(/\,/g, '');

and then pass that to parseInt:

var num = parseInt(strnum.replace(/\,/g, ''), 10);

But you need to be careful here. The use of commas as thousands separators is a cultural thing. In some areas, the number 1,234,567.89 would be written 1.234.567,89.

倦话 2024-10-07 08:44:37

如果只有数字和逗号:

+str.replace(',', '')

如果可以,+ 将字符串 str 转换为数字。为了尽可能清楚地说明这一点,请用括号括起来:

(+str.replace(',', ''))

因此,如果您在语句中使用它,它在视觉上会更加独立(+ +x 看起来与 ++x 非常相似):

var num = (+str1.replace(',', '')) + (+str1.replace(',', ''));

Javascript 代码约定(请参阅“令人困惑的优点和缺点” ”,从底部开始的第二部分):

http://javascript.crockford.com/code.html

If you only have numbers and commas:

+str.replace(',', '')

The + casts the string str into a number if it can. To make this as clear as possible, wrap it with parens:

(+str.replace(',', ''))

therefore, if you use it in a statement it is more separate visually (+ +x looks very similar to ++x):

var num = (+str1.replace(',', '')) + (+str1.replace(',', ''));

Javascript code conventions (See "Confusing Pluses and Minuses", second section from the bottom):

http://javascript.crockford.com/code.html

黎歌 2024-10-07 08:44:37

你可以这样做:

var value = parseInt("15,678".replace(",", ""));

You can do it like this:

var value = parseInt("15,678".replace(",", ""));
傲鸠 2024-10-07 08:44:37

在解析之前使用正则表达式删除逗号,如下所示

parseInt(str.replace(/,/g,''), 10)
//or for decimals as well:
parseFloat(str.replace(/,/g,''))

您可以在此处测试

Use a regex to remove the commas before parsing, like this

parseInt(str.replace(/,/g,''), 10)
//or for decimals as well:
parseFloat(str.replace(/,/g,''))

You can test it here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文