jQuery删除所有字符,但数字和小数

时间:2013-03-17 18:10:34

标签: javascript replace currency

var price = "$23.03";
var newPrice = price.replace('$', '')

这样可行,但价格也可以是:

var price = "23.03 euros";

以及许多其他货币。

无论如何我只能留下数字和小数(。)?

2 个答案:

答案 0 :(得分:27)

var newPrice = price.replace(/[^0-9\.]/g, '');

不需要jQuery。您还需要检查是否只有一个小数点,如下所示:

var decimalPoints = newPrice.match(/\./g);

// Annoyingly you have to check for null before trying to
// count the number of matches.
if (decimalPoints && decimalPoints.length > 1) {
    // do whatever you do when input is invalid.
}

答案 1 :(得分:1)

var newprice = price.replace( /\D+$/, '');