如何删除一个JavaScript字符串的所有反斜线?
var str = "one thing\\\'s for certain: power blackouts and surges can damage your equipment.";
我要像输出
one thing's for certain: power blackouts and surges can damage your equipment.
更新:
我从页面报废数据的JavaScript的帮助和显示花哨的框弹出。
请帮我在这
使用简单的正则表达式来解决这个问题
str = str.replace(/\\/g, '')
演示: 小提琴
这是根据作为标题是不是反斜杠 “ 在Javascript中删除所有斜杠 ”称号的答案。 因此,这里的代码从在JavaScript字符串中删除所有的斜杠。
str = '/mobiles-phones/.png';
str.replace(/\//g, "")//output would be "mobiles-phones.png";
我怎么串在JavaScript替代转换“9.61”到“9:61”?
var str = "one thing\\\'s for certain: power blackouts and surges can damage your equipment.";
str.replace("\", "");
Regexs是巨大str.replace(/\\/g,'')