我有一个这样的页面的HTML结构,
<form align="center" method="post" name="form1">
<input type="hidden" value="J0512-0491" name="jobid">
<input type="hidden" value="1" name="BDID">
<br>
<hr>
<b>Category: </b>
Food & Beverage
<br>
<b>City: </b>
Carlyle, Saskatchewan, Canada
<br>
<b>Job Number: </b>
05012-04191
<br>
<b>Salary Range: </b>
$13.19 - 16.48
<br>
<b>Closing Date: </b>
31/03/2013
<br>
<hr>
<b></b>
我需要使用 xpath 提取"城市:"的文本,即"卡琳,萨斯喀彻温省,加拿大"。关于如何实现这一目标的任何想法?
使用此 XPath:
//*[contains(text(),'City')]/following-sibling::text()[1]