如何用nospace替换字符串中的'/'?

时间:2016-11-20 12:12:25

标签: javascript regex

我必须替换包含/且没有空格的字符串。

示例:

输入:'测试/忽略';
输出:'TestIgnore';

我知道如何使用str.replace(/ |-/g, '');执行其他字符,但我无法实现此str.replace(/ |//g,'');

任何建议表示赞赏。

2 个答案:

答案 0 :(得分:1)

你必须逃避斜线,并把它放在正则表达式的开头,就像这样:

str.replace(/ \/|-/g, '');

答案 1 :(得分:1)

使用str.replace(/\/ | \s*/g,"")