如何在XPATH中选择此文本?

时间:2013-03-26 22:57:14

标签: xpath

我有这个div,我想选择与城市的邮政编码。我使用的所有选择器都获得了整个div,或没有正确的数据。

<div class="merchantContact">
    <h2 class="subHeadline firefinder-match">L' Autre Pied</h2>
    5-7&nbsp;Blandford Street<br>
    London&nbsp;W1U 3DB                <-------------------I want this line
    <br>
    <a href="http://www.lautrepied.co.uk" onclick="window.open(this.href); return false;"><font color="#0891be">Company Website</font></a><br>
</div>

1 个答案:

答案 0 :(得分:2)

试试这个:

html/body/div/text()[3]

使用firePath firefox插件的测试:

desc img


也许你需要在表达式中更加具体,所以试试这个:

//div[@class="merchantContact"]/text()[3]