Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
4  
What have you tried? – Juan Mendes Dec 4 '12 at 17:44
Yes, it can be done with String.replace. Read the API docs. developer.mozilla.org/en-US/docs/JavaScript/Reference/… – Matt Ball Dec 4 '12 at 17:44
Why %D1 and %D2? – nhahtdh Dec 4 '12 at 17:44
@Esailija Thanks!!! It work! – Ilya Kharlamov Dec 4 '12 at 17:51

4 Answers

up vote -1 down vote accepted

this replaces all the occurencies

var rep = function (s, search, replacement) { 
   while(s.indexOf(search) >= 0) 
       s = s.replace(search, replacement); 
   return s;
}
var s = rep("123AB", "A", "%D1");
share|improve this answer
1  
Yes, it works, but you're duplicating work that replace can do for you – Juan Mendes Dec 4 '12 at 17:54
If global replace was necessary, you could have just done global replace ... s.replace( /A/g, "%D1") – Esailija Dec 4 '12 at 17:57
@IlyaKharlamov This is the worst answer out of all the available ones – Juan Mendes Dec 4 '12 at 19:54
1  
but you're using regular expressions.. they are slower than mine verification.. bad for you.. =\ – thiagoh Dec 5 '12 at 22:17
2  
You do realize that this is O(n²) where as regex will be O(n)? even if you didn't realize that, regex is 50 times faster here jsperf.com/replace-vs-on2 – Esailija Dec 6 '12 at 9:20
show 1 more comment

String.replace is very simple

"ABCDEFA".replace(/A/g, "a") // outputs "aBCDEFa"
"ABCDEFB".replace(/B/g, "b") // outputs "AbCDEFb"

So you could use

"123AB".replace(/A/g, "%D1").replace(/B/g, "%D2");

However, you can do it in one pass by passing a replacement function instead of a string to replace

"123AB".replace(/A|B/g, function(match) {
     var repacements = {A: '%D1', B: '%D2'};
     return replacements[match];
})
share|improve this answer
@downvoter an explanation would be nice – Juan Mendes Dec 5 '12 at 3:02
@Jaun Mendes , i bet this was jealousy ;D from the Downvoter – Darkyen Dec 6 '12 at 9:26

It's pretty straightforward, first argument is what you want to replace and second argument is what you want to replace it with:

var str = "123AB";
str = str.replace( "A", "%D1" ).replace( "B", "%D2");
//str is now "123%D1%D2"
share|improve this answer
when you have more than one "A" your code doesnt works – thiagoh Dec 5 '12 at 22:18
1  
yes it does, it replaces the a and the b as op requested :I – Esailija Dec 6 '12 at 9:17
@Esailija It only works for the input the OP requested, not if there are multiple As or Bs. "123ABABAB".replace( "A", "%D1" ).replace( "B", "%D2"); outputs "123%D1%D2ABAB" You need the regular expression to make it a global replace – Juan Mendes Dec 6 '12 at 22:35
@JuanMendes yes I know that, but the op asked for a simple replace that works for his input :-p – Esailija Dec 6 '12 at 22:40
@Esailija That is a sample string, you can't assume that is the only possible input, can you? – Juan Mendes Dec 6 '12 at 22:45

This should work .. str.replace("A",D1)

share|improve this answer

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.