2014-02-05 98 views

回答

0
var sample = '"sample"'.match(/[^"]+/g)[0]; 
0

如果你想使用""分隔的字符串,那麼你必須要逃避它:

"\"" 

但是,如果要更換多次,您需要使用帶有全局標誌的正則表達式。

t=t.replace(/"/g," "); 
0

你可以用下面的更換引號空白:

str = str.replace(/"/g, "");

0

可以使用全局標誌:

var name = "\"Ahmad\""; 
console.log(name); 
console.log(name.replace(/\"/g, "")); 

// "Ahmad" 
// Ahmad 
0

試試這個..

海峽= str.replace(/(「)/,」「);

str = str.replace(/ \「/,」「);