Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I get errors when I try any of the following:

str = str.replace(/</p>/gm, "")
str = str.replace("</p>"/gm, "")

What am I doing wrong?

share|improve this question

3 Answers

up vote 4 down vote accepted

The '/' is a special character that you have to escape it within the regex:

str = str.replace(/<\/p>/gm, "");
share|improve this answer
Thanks - very quick answers! – Simple Simon Nov 16 '11 at 15:08
tr = str.replace(/\<\/p\>/gi, "")
share|improve this answer
This is not an answer. It is just a line of code. It is not of lasting value to the community as a wiki entry. – markus Nov 16 '11 at 17:06

You have to escape the backslash character.

str = str.replace(/<\/p>/gm, "");

See example here.

share|improve this answer

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.