我想使用xpath从html对象中提取html文本。我不需要href。有没有办法可以指明?
<a href="https://www.example.com/xxk/xxk?trk=ppro_cprof">Munich</a>
我使用了以下内容,但它给了我一个完整的文字。任何人都可以告诉我如何使用xpath提取文本。
//section[@id='location']//h5/a
答案 0 :(得分:2)
您需要text()
:
//section[@id='location']//h5/a/text()