标签: javascript regex
您好我正在使用js,我想从我的结果中删除\ t \ t \ t \ tt。
我试过Regex ......它不起作用。
答案 0 :(得分:0)
试试这个:
str = str.replace(/\t/g, "");
g标志将全局搜索\ t。