简体   繁体   中英

Escaping quotes in a javascript string

I'm trying to escape the quotes (and apostrofes and escape char) in a text string in javascript:

var text = 'Escape " and \' and /.';
var rx = new RegExp('/([\'"])/g');
console.log(text, ' ==> ', text.replace(rx,'//\1'));​​​​​

What I expect to be output is Escape /" and /' and //. , but instead I get Escape " and ' and /. .

I just can't seem to get this working and don't know what's wrong.

Here's a JSFiddle: http://jsfiddle.net/hvtgf/

Escaping means using backslash \\ but not slash / .

However, for your purposes you can try the following:

text.replace(/([/'"])/g, "/$1");

DEMO: http://jsfiddle.net/hvtgf/1/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM