I have a string that looks like KATIE+DAMAN-SUZANNE+DANIELS
How do I replace both + signs? I tried the following which does not work.
string.replace(/+/g, ' ');
I have a string that looks like KATIE+DAMAN-SUZANNE+DANIELS
How do I replace both + signs? I tried the following which does not work.
string.replace(/+/g, ' ');