gpt4 book ai didi

python-3.x - 如何在一组匹配的元素 xpath 中选择元素

转载 作者:行者123 更新时间:2023-12-04 10:28:50 25 4
gpt4 key购买 nike

我有以下 html 文本:

<div>
<p>
"Text one"
<br>
"Text two"
<br>
"Text three"
<br>
"Text four"
</p>
</div>

我只需要使用 xpath 选择“文本二”和“文本三”。
到目前为止,我有以下选择整个文本的 xpath:
 text = doc.xpath('/div/p/text()')

虽然我希望结果是:
 Text two
Text three

我怎样才能做到这一点?

最佳答案

假设树中文本的位置决定了您的目标,请尝试将 xpath 表达式更改为

//div/p/text()[position()> 1 and position() < 4]

关于python-3.x - 如何在一组匹配的元素 xpath 中选择元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60506980/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com