I need to take all plus symbols from a variable and replace them with spaces. I have tried:
someVariable = "0+123+45+6";
someVariable.replace(/+/g, ' ');
But this doesn't work... what would be the correct syntax for this situation?
|
I need to take all plus symbols from a variable and replace them with spaces. I have tried:
But this doesn't work... what would be the correct syntax for this situation? |
|||
|
the should be EDIT the regular expression does not modify the string object itself. but returns the result.
|
|||||||
|
SyntaxError: Invalid regular expression: /+/: Nothing to repeat. That should give you a clue ;) – Felix Kling Jan 28 at 16:29