首页 > 代码库 > java_js从字符串中截取数字

java_js从字符串中截取数字

var str="1件*20桶*30包*123.45公斤";
var res=str.match(/\d+(\.\d+)?/g);
alert(res);

java_js从字符串中截取数字