我正在尝试为属性获取介于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 >= 100 and 199 <= @code])"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
请帮我解决这个问题
答案 0 :(得分:0)
只需使用>
进行两项测试:
count(//cd/title[@code >= 100 and 199 >= @code])
>
不应该将转义为>
。无论如何都没关系。