All you need to know is in the question. I have a search query in the URL that looks like this:

http://www.mysite.com?param=word1+word2+word3

So far, I can retrieve "word1+word2+word3" but I can't seem to use something like:

document.write(str.replace(/+/g," "));

I want the final output to look like this: "word1 word2 word3"

Thanks for looking.

link|improve this question

67% accept rate
feedback

5 Answers

up vote 5 down vote accepted

Try to escape the + sign using the escape char \ since is a restricted char:

document.write(str.replace(/\+/g," "));

http://www.regular-expressions.info/javascript.html

link|improve this answer
+1 for being quicker. – stema Feb 20 at 9:20
Thanks. I am glad the answer was helpful and fast :) – mazzucci Feb 20 at 9:25
Thanks everyone, and mazzucci for being first :) – Freakishly Feb 20 at 9:52
feedback

The + is a special character in regex, if you want to match it literally you have to escape it. So try:

document.write(str.replace(/\+/g," "));
link|improve this answer
feedback

You have to escape the + sign, it's has special meaning in Regexes.

document.write(str.replace(/\+/g," "));
link|improve this answer
feedback

How about using the split() function, that seems to be much simpler for this case:

document.write(str.split(",", " ");
link|improve this answer
feedback

Try with the hex value

document.write(str.replace(/[\u002B]/g," "));
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.