正则表达式替换html标签之外的文本

正则表达式替换html标签之外的文本,第1张

正则表达式替换html标签之外的文本

好的,尝试使用此正则表达式:

(text|simple)(?![^<]*>|[^<>]*</)

分解:

(         # Open capture group  text    # Match 'text'|         # Or  simple  # Match 'simple')         # End capture group(?!       # Negative lookahead start (will cause match to fail if contents match)  [^<]*   # Any number of non-'<' characters  >       # A > character|         # Or  [^<>]*  # Any number of non-'<' and non-'>' characters  </      # The characters < and /)         # End negative lookahead.

前瞻会阻止匹配,如果

text
还是
simple
是HTML标记之间。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5641081.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存