I want to check to see if any of these 3 strings:

popularity
rating
views

exists in a string stored inside a variable called theUrl. If the answer is yes, then I want to replace that found string with the word REPLACED.

What would be an elegant way to do this?

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

You can use a regular expression:

theUrl = theUrl.replace(/\b(popularity|rating|views)\b/g, 'REPLACED')
link|improve this answer
feedback

The following way:

theUrl = theUrl.replace("popularity", "REPLACED").replace("rating", "REPLACED").replace("views", "REPLACED");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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