标签: javascript angularjs
我想用过滤器中的单引号替换双引号:
INPUT: 这就是我想在过滤器中“发生”的事情
输出: 这就是我想在过滤器中“发生”的事情
这是我的尝试:
.filter('quoteSingle', function() { return function(text) { return text.replace(""", '&apos'); }; })
答案 0 :(得分:2)
使用此text.replace(/"/g, "'" )
text.replace(/"/g, "'" )