Technology??A site for testing the new tools I'm building, and a little talk about what I'm learning on the way. |
Javascript Replace All with VariableMonday, December 28, 2009
Here is how you replace all values in a string with another string which is inside of a variable using Javascript:
var str = "Please change all the change words in this sentence."; var searchfor = "change"; str = str.replace(new RegExp(searchfor, 'g'), "changed"); The resulting value for str would be: "Please changed all the changed words in this sentence."; CommentsMihir - Thursday, March 18, 2010 6:30 AM Very useful thanks Eytibi - Meckenheim, Westphalia - Thursday, July 22, 2010 1:10 PM Works! Thank you
|
See Also
|