up vote 4 down vote favorite
share [g+] share [fb]

I can't any example of this after being unable to puzzle out how it would work on my own.

All I want to do is take a string which has been assigned to a value, and use that as the replace match string for all matches.

var replacement = 'i';
var text = 'tieiam';

text = text.replace(replacement, '');  // 'teiam'

text = text.replace(/tieiam/g, ''); // 'team'

How do I use them together??

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

What you want is to use the RegExp object:

text = text.replace(new RegExp(replacement, 'g'), '');

Simple example of it in action.

link|improve this answer
Hideous, but it works. Thanks! – Trevor Bramble Jun 26 '09 at 13:39
Don't forget to escape regexp special chars with backslashes – Vincent Robert Jun 26 '09 at 13:39
feedback

Your Answer

 
or
required, but never shown

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