当前位置:Gxlcms > PHP教程 > javascript-一个价格正则怎么样提出出来

javascript-一个价格正则怎么样提出出来

时间:2021-07-01 10:21:17 帮助过:7人阅读

最终匹配到2499.00,正则该怎么样写;

回复内容:

最终匹配到2499.00,正则该怎么样写;

直接这样可以吗 substr("¥2499.00",3);

("¥2,499,999.00").replace("¥","").replace(/,/g,"");

("¥499,999.00").replace(/[^\d\.]/g,"");

"¥2,499.00".match(/¥([\d,]*?\.00)/)[1]
//2499.00
"¥2,99.00".match(/¥([\d,]*?\.00)/)[1]
//299

var str='¥2,499.00';
str.replace(/[¥,]/g,''); // => 2499.00

var str = '$2,499.00';
str.match(/[\d.]/g).join('');

如果字符串里面还有其他的字符,这样就可以了

人气教程排行