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
给了我这本书的标题,价格最低
但我如何获得价值?
* 我还需要归还所有写过2本或更多书的作者 我试过了:
//author[count(parent::book)>=1]/text()
但没有成功: - (
答案 0 :(得分: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 < 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]
答案 1 :(得分:0)
如果以前找到作者的答案不起作用,请尝试以下方法:
(/inventory/book/author[(../following-sibling::book/author = . )
而不是
(../preceding-sibling::book/author = . )])