我正在编写JSON API调用,我正在获取html字符串
即:
"content":"<p>Being a designer is like being a porn star.
You’re hot & popular for a year or two,
then everyone goes off and finds something new to screw around too. <\/p>\n"
我需要在没有HTML的情况下获取此字符串,因此我使用了这个:
n = e.content.replace(/(<([^>]+)>)/gi, "")
但是当字符串是右单引号’ ’
时,它将结束字符串。
请问,如何将此引号与其他符号一起过滤/替换?当我添加引号时,它停止过滤所有内容。