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

I have the following function:

listorder = listorder.replace('projectlist-','');

Problem with this is it only finds and replace the first instance and there are many. How can this be updated to Find/Replace All instances in the string?

Thanks

share|improve this question

1 Answer

Global replace (all instances)

listorder = listorder.replace(/projectlist-/g,'');

Case-insensitive replace

listorder = listorder.replace(/projectlist-/i,'');

Global and case-insensitive

listorder = listorder.replace(/projectlist-/gi,'');
share|improve this answer
What if the first argument to replace() is a variable rather than a string? I can't seem to get it working... – Jamie Carruthers Mar 22 '12 at 16:23
1  
@JamieCarruthers in that case you'll need to use a RegExp object (w3schools.com/jsref/jsref_obj_regexp.asp) and use it as the first parameter of replace(). – Ben Mar 22 '12 at 18:20

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.