我试图删除一个字符串的每个反斜线一个小时,但我无法使其正常工作。
例如,这是我的字符串:
[{\“ file \”:\“ https:\\ / n-adsadele.stjkwgjkw.co \ / adwq
这是我尝试过的:
const replaced = toString.replace(String.fromCharCode(92), String.fromCharCode(32));
const replaced = toString.replace("\\\\", "");
const replaced = toString.replace("\\", "");
const replaced = toString.replace(/\\/, "");
所有这些绝对不起作用。
答案 0 :(得分:3)
您可以像使用正则表达式一样简单:
var toString = '[{\"file\":\"https:\\/n-adsadele.stjkwgjkw.co\/adwq';
console.log(toString.replace(/\\/g, ""));