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.