0

I have to replace a string that contains / with no space.

Example :

Input: 'Test / Ignore';
Output: 'TestIgnore';

I know how to do other characters using str.replace(/ |-/g, '');, but I am not able to implement this str.replace(/ |//g,'');

Any suggestions appreciated.

dda
  • 5,760
  • 2
  • 24
  • 34
radio_head
  • 1,227
  • 2
  • 12
  • 27

2 Answers2

1

You have to escape the slash, and put it at the beginning of the regex, like so:

str.replace(/ \/|-/g, '');
Stuart
  • 6,509
  • 2
  • 23
  • 38
1

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

Arpit
  • 373
  • 3
  • 6
  • 10