I need to replace multiple characters in a string. I have a line - "123AB"
And I need to replace the A at %D1, and B at %D2.
How do I do this? Can it be done with .replace, if so, how?
|
I need to replace multiple characters in a string. I have a line - "123AB" And I need to replace the A at %D1, and B at %D2. How do I do this? Can it be done with .replace, if so, how? |
||||
|
this replaces all the occurencies
|
|||||||||||||||||
|
|
So you could use
However, you can do it in one pass by passing a replacement function instead of a string to replace
|
|||||
|
|
|
It's pretty straightforward, first argument is what you want to replace and second argument is what you want to replace it with:
|
|||||||||||||
|
String.replace. Read the API docs. developer.mozilla.org/en-US/docs/JavaScript/Reference/… – Matt Ball Dec 4 '12 at 17:44