最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Escaping square brackets in Regex when using a variable? - Stack Overflow

programmeradmin1浏览0评论

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! :)

Share Improve this question asked Nov 29, 2012 at 1:43 Joey MoraniJoey Morani 26.6k33 gold badges89 silver badges132 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

You should escape it with backslashes:

var re = new RegExp("\\[" + j + "\\]", "g");
发布评论

评论列表(0)

  1. 暂无评论