如何在javascript中使用replace替换此"sample"
到sample
。
我尝试了t=t.replace("""," ");
答案 0 :(得分:0)
var sample = '"sample"'.match(/[^"]+/g)[0];
答案 1 :(得分:0)
如果您想在"
分隔的字符串中使用"
,则必须将其转义:
"\""
但是,如果要多次替换,则需要使用带有全局标志的正则表达式。
t=t.replace(/"/g," ");
答案 2 :(得分:0)
您可以使用以下内容将引号替换为空白:
str = str.replace(/"/g, "");
答案 3 :(得分:0)
你可以使用全局标志:
var name = "\"Ahmad\"";
console.log(name);
console.log(name.replace(/\"/g, ""));
// "Ahmad"
// Ahmad
答案 4 :(得分:0)
试试这个..
str = str.replace(/(“)/,”“);
或
str = str.replace(/ \“/,”“);