up vote 21 down vote favorite
2
share [g+] share [fb]

How do you replace all instances of one string with another in javascript? Example:

someString = 'the cat looks like a cat'
anotherString = someString.replace('cat', 'dog');

results in anotherString being set to 'the dog looks like a cat', and I would like it to be 'the dog looks like a dog'

link|improve this question

68% accept rate
feedback

3 Answers

up vote 36 down vote accepted

Using a regular expression with the g flag set will replace all:

someString = 'the cat looks like a cat';
anotherString = someString.replace(/cat/g, 'dog');
// anotherString now contains "the dog looks like a dog"

See also: http://www.tizag.com/javascriptT/javascript-string-replace.php

link|improve this answer
Kinda silly I think, but the JS global regex is the only way to do multiple replaces. – Mike May 7 '09 at 2:43
24 upvotes for a simple regex? yikes! – AlienWebguy Aug 10 '11 at 4:08
2  
@Alien, the alt text for upvote is "This answer is useful". Is this answer useful? – Rice Flour Cookies Sep 19 '11 at 16:55
Thanks Rice, after all this time I didn't know what upvoting an answer really meant... – AlienWebguy Sep 20 '11 at 14:46
feedback

Match against a global regular expression:

anotherString = someString.replace(/cat/g, 'dog');
link|improve this answer
feedback

Not really much better than using a regexp, but multiple replacements can alternatively be achieved this way:

function multiReplace(str, match, repl) {
    do {
        str = str.replace(match, repl);
    } while(str.indexOf(match) !== -1);
    return str;
}

multiReplace("the cat looks like a cat", "cat", "dog"); // "the dog looks like a dog"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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