标签: javascript
如何使用javascript正则表达式替换所有出现的双引号和单引号?
答案 0 :(得分:0)
var stripped = mystring.replace(/["']/g, " ");