vote up 3 vote down star

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'

flag

67% accept rate

2 Answers

vote up 8 vote down check

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|flag
Kinda silly I think, but the JS global regex is the only way to do multiple replaces. – Mike May 7 at 2:43
vote up 2 vote down

Match against a global regular expression:

anotherString = someString.replace(/cat/g, 'dog');
link|flag

Your Answer

Get an OpenID
or

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