我想要匹配&符号(&),而不是以下列方式存在
' " > < & &#
所以在下面的一行
&安培;我和放大器; NAME IS M& Hh. &安培;者; &安培; QUOT; &安培; GT; &安培; LT; &放大器;放大器; &&&&&&&&
我想要它匹配除了存在的所有&符号
&安培;者; &安培; QUOT; &安培; GT; &安培; LT; &放大器;放大器; &安培;#
这看起来像
negative lookahead assertions的工作:
原文链接:https://www.f2er.com/regex/357215.html&(?!(?:apos|quot|[gl]t|amp);|#)
应该工作
说明:
& # Match & (?! # only if it's not followed by (?: # either apos # apos |quot # or quot |[gl]t # or gt/lt |amp # or amp ); # and a semicolon | # or \# # a hash ) # End of lookahead assertion