如何通过Xpath组合不同的值返回

时间:2012-09-18 11:43:39

标签: xpath xpath-2.0

<p class="pd-price">
    <img alt="€" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/euro_small.png">
    <img class="offsetStandard" alt="2" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/2.png">
    <img class="offsetStandard" alt="6" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/6.png">
    <img class="offsetStandard" alt="1" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/1.png">
    <img class="offsetStandard" alt="-" src="http://www.redcoon.es/templates/tpl/img/pd/pd-price/minus_point.png">
</p>

如何为此段落编写Xpath,使其返回“€261-”。所有alt标签的组合字符串。

2 个答案:

答案 0 :(得分:1)

使用

 string-join(p/img/@alt, "")

首先选择所有alt属性的文本,然后将其组合成一个字符串

答案 1 :(得分:0)

在Xpath 2中,您有string-join

string-join(p[@class='pd-price']/img/@alt, '')