admin管理员组文章数量:1344680
I have this code to replace all opening and closing square brackets which has a matching variable inside:
for (var j = 0; j <= temp.length; j++) {
var re = new RegExp("["+j+"]", 'g');
imgData = imgData.replace(re, temp[j]);
}
The line var re = new RegExp("["+j+"]", 'g');
doesn't work because I assume the brackets aren't being escaped. Does anyone know how I would escape them, but still be able to have a variable in the pattern? Thanks! :)
I have this code to replace all opening and closing square brackets which has a matching variable inside:
for (var j = 0; j <= temp.length; j++) {
var re = new RegExp("["+j+"]", 'g');
imgData = imgData.replace(re, temp[j]);
}
The line var re = new RegExp("["+j+"]", 'g');
doesn't work because I assume the brackets aren't being escaped. Does anyone know how I would escape them, but still be able to have a variable in the pattern? Thanks! :)
1 Answer
Reset to default 12You should escape it with backslashes:
var re = new RegExp("\\[" + j + "\\]", "g");
本文标签: javascriptEscaping square brackets in Regex when using a variableStack Overflow
版权声明:本文标题:javascript - Escaping square brackets in Regex when using a variable? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743708299a2525491.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论