我想在文档中搜索以下字符串
<whoName>[substring]</whoName>
其中子字符串!=“自我”
所以
<whoName>other</whoName>
会通过的。
但
<whoName>self</whoName>
会失败
我想在文档中搜索以下字符串
<whoName>[substring]</whoName>
其中子字符串!=“自我”
所以
<whoName>other</whoName>
会通过的。
但
<whoName>self</whoName>
会失败
您可以使用这个基于负前瞻的正则表达式:
<(whoName)>(?!self\s*<).*?<\/\1>
正则表达式分解:
<(whoName)> # Match <whoName> and capture it ($1)
(?!self\s*<) # Negative lookahead that means current position is not followed by literal
# self followed by 0 or more spaces and <
.*? # Match 0 or more characters (non-greedy)
<\/\1> # Match closing tag using back-reference to captured group #1
使用这个正则表达式:
^<whoName>((?!self<).)*</whoName>
在记事本++和regex101中测试