var str = "总价为:1400.00元,单价为:200元"
怎么用正则或者其他方式,获取1400.00和200这两个字段,并对应到总价和单价?
业精于勤,荒于嬉;行成于思,毁于随。
雷雷
我觉得可以检索一下。
var pattern=/d+.d+/g;var matches=str.match(pattern);console.log(matches);
雷雷
我觉得可以检索一下。
var pattern=/d+.d+/g;
var matches=str.match(pattern);
console.log(matches);