3

XML 示例文件是:

<?xml version="1.0" encoding="UTF-8"?> 
<data> 
    <book num="b1"> 
        <title>book1</title> 
        <author>auth1</author>
        <price>5</price> 
    </book> 
    <book num="b2"> 
        <title>book2</title> 
        <author>auth2</author>
        <price>10</price> 
    </book> 
     <book num="b3"> 
        <title>book2</title> 
        <author>auth1</author>
        <price>12</price> 
    </book> 
</data> 

我需要返回一个值(最高价格-最低价格)。

data/book[not(../book/price> price)]/title 

给了我最高价的书名

data/book[not(../book/price<price)]/title

给了我最低价的书名

但我如何获得价值?

*我还需要返回所有写过我尝试过的两本书或更多书的作者:

//author[count(parent::book)>=1]/text()

但没有成功:-(

4

2 回答 2

1

只需从最大值中减去最小值:

data/book[not(../book/price > price)]/price 
- data/book[not(../book/price < price)]/price

XSLT 1.0 样式表中应用:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="text"/>
    <xsl:template match="/">
        <xsl:value-of select="data/book[not(../book/price > price)]/price 
                             - data/book[not(../book/price &lt; price)]/price" />
    </xsl:template>
</xsl:stylesheet>

如果您可以使用XPath 2.0,那么您可以使用min()max()函数。在XSLT 2.0 样式表中应用:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:output method="text"/>
    <xsl:template match="/">
        <xsl:value-of select="max(data/book/price) - min(data/book/price)" />
    </xsl:template>
</xsl:stylesheet>

要查找出现两次或更多次的作者,可以使用以下 XPath:

(/data/book/author[../following-sibling::book/author = .])[1]
于 2013-04-27T23:56:46.550 回答
0

如果之前查找作者的答案不起作用,请尝试以下操作:

(/inventory/book/author[(../following-sibling::book/author = . )

并不是

(../preceding-sibling::book/author = . )])
于 2013-04-29T12:47:04.677 回答