提取数字

var reg = /d+/g;
var s = "扣440分,罚按时阿萨德款了120元";
console.log(reg.exec(s));
console.log(reg.exec(s));
原文地址:https://www.cnblogs.com/zhishaofei/p/4277698.html