我有一个字符串如下:
this is an example of </div>
然后使用.replace
,我希望用其他内容替换</div>
。
content.replace(/</div>/g,'function'); //remove </div>
然而,&#34; /&#34;括号内部导致错误。我该如何解决这个问题?
答案 0 :(得分:1)
你需要逃避斜线。尝试这样的事情:
content.replace(/<\/div>/g,'');
答案 1 :(得分:1)
您可以转义/
(使用反斜杠\/
):
content.replace(/<\/div>/g,'function'); //remove </div>
或者您可以创建一个新的RegExp对象:
r = new RegExp('</div>', 'g')