我正在尝试从一串转义字符中删除单引号和双引号。它不适用于单引号'
或双自动"
。
请问有人可以帮忙吗?
var mysting = escapedStr.replace(/^%22/g, ' '); //doesnt remove the double quotes
var mysting = escapedStr.replace(/^%27/g, ' '); //doesnt remove the single quotes
var mysting = escapedStr.replace(/^%3A/g, ' '); //does remove the SEMI COLON %3A