我知道这个主题在SO上已被多次处理过,但我还没有找到合适的解决方案。
我有这个字符串:
<p>Your account has been created on this application.</p>
<p><em>You are now connected as <strong>vado</strong>. Used language: <strong>en</strong>.</em></p>
我想删除所有<p></p>
代码,但不删除内容。我已经尝试了几个正则表达式,但到目前为止我还无法删除它们。
我尝试了replace('<p>', '').replace('</p>', '')
,replace(/(<([p^>]+)>)/ig)
但是......
请注意,我需要在这里使用正则表达式,DOM jQuery操作是不可能的。