var str = "1-2";
var arr = ["", "a", "b"];
I would like to replace 1 with "a", and 2 with "b", here is my code. But it didn't work.Pls help me out.
str = str.replace('(\d)-', arr["$1"]+"-");
str = str.replace('-(\d)', "-"+arr["$1"]);
I would like to replace 1 with "a", and 2 with "b", here is my code. But it didn't work.Pls help me out.
|
|||
|
|
|
Use an anonymous function:
Note, that this will only replace one occurence (commenters were faster that me editing; you might want to use the The anonymous function's arguments are the full matched string and capture groups (if any). |
|||||||||
|
Here's the working code: http://jsfiddle.net/HsQC7/ |
|||
|
|