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

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'

share|improve this question

5 Answers

up vote 28 down vote accepted

Final addition:

Given that this question still gets a lot of views, I thought I might add an example of .replace used with a callback function. In this case, it dramatically simplifies the expression and provides even more flexibility, like replacing with correct capitalisation or replacing both cat and cats in one go:

'Two cats are not 1 Cat! They\'re just cool-cats, you caterpillar'.replace(/(^|.\b)(cat)(s?\b.|$)/gi,function(all,char1,cat,char2)
{
    //check 1st, capitalize if required
    var replacement = (cat.charAt(0) === 'C' ? 'D' : 'd') + 'og';
    if (char1 === ' ' && char2 === 's')
    {//replace plurals, too
        cat = replacement + 's';
    }
    else
    {//do not replace if dashes are matched
        cat = char1 === '-' || char2 === '-' ? cat : replacement;
    }
    return char1 + cat + char2;//return replacement string
});
//returns:
"Two dogs are not 1 Dog! They're just cool-cats, you caterpillar"

Update:

It's somewhat late for an update, but since I just stumbled on this question, and noticed that my previous answer is not one I'm happy with. Since the question involved replaceing a single word, it's incredible nobody thought of using word boundaries (\b)

'a cat is not a caterpillar'.replace(/\bcat\b/gi,'dog');
//"a dog is not a caterpillar"

This is a simple regex that avoids replacing parts of words in most cases. However, a dash - is still considered a word boundary. So conditionals can be used in this case to avoid replacing strings like cool-cat:

'a cat is not a cool-cat'.replace(/\bcat\b/gi,'dog');//wrong
//"a dog is not a cool-dog" -- nips
'a cat is not a cool-cat'.replace(/(?:\b([^-]))cat(?:\b([^-]))/gi,'$1dog$2');
//"a dog is not a cool-cat"

basically, this question is the same as the question here: Javascript replace " ' " with " '' "

@Mike, check the answer I gave there... regexp isn't the only way to replace multiple occurrences of a subsrting, far from it. Think flexible, think split!

var newText = "the cat looks like a cat".split('cat').join('dog');

Alternatively, to prevent replacing word parts -which the approved answer will do, too! You can get around this issue using regular expressions that are, I admit, somewhat more complex and as an upshot of that, a tad slower, too:

var regText = "the cat looks like a cat".replace(/(?:(^|[^a-z]))(([^a-z]*)(?=cat)cat)(?![a-z])/gi,"$1dog");

The output is the same as the accepted answer, however, using the /cat/g expression on this string:

var oops = 'the cat looks like a cat, not a caterpillar or coolcat'.replace(/cat/g,'dog');
//returns "the dog looks like a dog, not a dogerpillar or cooldog" ?? 

Oops indeed, this probably isn't what you want. What is, then? IMHO, a regex that only replaces 'cat' conditionally. (ie not part of a word), like so:

var caterpillar = 'the cat looks like a cat, not a caterpillar or coolcat'.replace(/(?:(^|[^a-z]))(([^a-z]*)(?=cat)cat)(?![a-z])/gi,"$1dog");
//return "the dog looks like a dog, not a caterpillar or coolcat"

My guess is, this meets your needs. It's not fullproof, of course, but it should be enough to get you started. I'd recommend reading some more on these pages. This'll prove useful in perfecting this expression to meet your specific needs.

http://www.javascriptkit.com/jsref/regexp.shtml

http://www.regular-expressions.info

share|improve this answer

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

share|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
11  
@Alien, the alt text for upvote is "This answer is useful". Is this answer useful? – Daniel Allen Langdon Sep 19 '11 at 16:55
1  
Thanks Rice, after all this time I didn't know what upvoting an answer really meant... – AlienWebguy Sep 20 '11 at 14:46

Match against a global regular expression:

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

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"
share|improve this answer
2  
This is an excelent solution, especially when you don't know the words that need to be replaced in advance – yoav barnea Feb 1 at 8:59

I like this method, it looks a little cleaner.

text = text.replace(new RegExp("cat","g"), "dog")); 
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.