两个值之间的XSLT Count()

时间:2015-11-30 18:24:41

标签: xslt xslt-1.0 xslt-2.0

我正在尝试为属性获取介于100到199(包括两者)范围内的计数,但我无法加入两个结果。请帮帮我

<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<cd>
    <title code="120">Empire Burlesque</title>
    <artist>Bob Dylan</artist>
    <country>USA</country>
    <company>Columbia</company>
    <price>10.90</price>
    <year>1985</year>
</cd>
<cd>
    <title code="200">Hide your heart</title>
    <artist>Bonnie Tyler</artist>
    <country>UK</country>
    <company>CBS Records</company>
    <price>9.90</price>
    <year>1988</year>
</cd>
<cd>
    <title code="100">Greatest Hits</title>
    <artist>Dolly Parton</artist>
    <country>USA</country>
    <company>RCA</company>
    <price>19.90</price>
    <year>1982</year>
</cd>
</catalog>

上述XML的XSLT是

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<xsl:value-of select="count(//cd/title[@code &gt;= 100 and 199 &lt;= @code])"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

请帮我解决这个问题

1 个答案:

答案 0 :(得分:0)

只需使用&gt;进行两项测试:

count(//cd/title[@code >= 100 and 199 >= @code])

>不应该转义为&gt;。无论如何都没关系。

工作示例:http://xsltransform.net/ej9EGcn