最开始我写的正则表达式是
var reg = /(?=stock\()(\d+)/;
var str = 'stock(1000,10)';
str.replace(reg, 999);
但是其实str.match(reg)却返回null
还请各位大佬们指点
相关分类