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?
|
I get errors when I try any of the following:
What am I doing wrong? |
||||
|
|
|
The '/' is a special character that you have to escape it within the regex:
|
||||
|
|
|
|||
|
|
|
|||
|
|