所以我有以下示例 html 来解析。
<div>
<strong>Title:</strong>
Sub Editor at NEWS ABC
<strong>Name:</strong>
John
<strong>Where:</strong>
Everywhere
<strong>When:</strong>
Anytime
<strong>Everything can go down there..</strong>
Lorem Ipsum blah blah blah....
</div>
我想提取整个 div,除了我不希望 Title 和 Where 和 When 带有以下值。
到目前为止,我已经测试了以下 XPaths。
a)没有跟随兄弟姐妹(1:不工作。2:工作)
1. //div/node()[not(strong[contains(text(), "Title")])]
2. //div/node()[not(self::strong and contains(text(), "Title"))]
a)有以下兄弟姐妹(1:不工作。2:不工作)
1. //div/node()[not(strong[contains(text(), "Title")]) and not(strong[contains(text(), "Title")]/following-sibling::text())]
2. //div/node()[not(self::strong and contains(text(), "Title") and following-sibling::text())]
如何实现我所追求的?