Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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"]);
share|improve this question

2 Answers

up vote 7 down vote accepted

Use an anonymous function:

var arr = [ /* ... */ ];

str = str.replace(/\d/, function(match) {
   return arr[match];
});

Note, that this will only replace one occurence (commenters were faster that me editing; you might want to use the g modifier for the regex in order to repeat replacing until the regex doesn't match).

The anonymous function's arguments are the full matched string and capture groups (if any).

share|improve this answer
1  
The regex should be /\d/g to replace both numbers. – Rocket Hazmat Jan 24 '12 at 16:11
Thanks @Rocket, you were faster than me editing the answer... – Linus Kleen Jan 24 '12 at 16:13
Yeah, it works! Thanks for help! XD – Will Jan 24 '12 at 16:24
var str = "1-2";
var arr = ["", "a", "b"];
str = str.replace(/(\d)-/, function (mathchedText,$1,offset,str) {
    return arr[$1] + "-"
});

str = str.replace(/-(\d)/,function (mathchedText,$1,offset,str) {
    return "-" + arr[$1]
});

document.write(str);

Here's the working code: http://jsfiddle.net/HsQC7/

share|improve this answer
problem solved! wow,all the arguments clear. Thx! – Will Jan 24 '12 at 16:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.