尝试使用 JS .replace 用字符串替换整数来了解一些正则表达式。
例如,字符串可以是:
var string = 'image[testing][hello][0][welcome]';
我想用另一个值替换“0”。我最初使用这个:
string.replace( /\[\d\]/g, '[newvalue]');
但是当我们开始替换两位数或更多(12、200、3204,你明白我的意思)时,它就会停止正常工作。不知道如何让它按照我想要的方式运行。
提前致谢。非常感激。