0

我有以下 XML:

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="count-example.xsl"?>
<musiclist>
<mp3>
    <id>MP1003</id>
    <artist>Frank Sinatra</artist>
    <title>Fly Me To The Moon</title>
    <location path="home/music/sinatra/MP1008.mp3" />
</mp3>
<mp3>
    <id>MP1004</id>
    <artist>Frank Sinatra</artist>
    <title>New York, New York</title>
    <location path="home/music/sinatra/MP1004.mp3" />
</mp3>
<mp3>
    <id>MP1005</id>
    <artist>Frank Sinatra</artist>
    <title>Young At Heart</title>
    <location path="home/music/sinatra/MP1009.mp3" />
</mp3>
</musiclist>

和以下 XSL:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="musiclist">
    <xsl:for-each select="mp3">
        <xsl:variable name="idvar" select="id" />
        <xsl:if test="contains(location/@path, $idvar) = 0">
            false
        </xsl:if>
    </xsl:for-each>
</xsl:template>
</xsl:stylesheet>

XSL 将输出 False 两次,因为我捕获的 ID 不在 location 元素的 path 属性中,如我所愿。

我如何计算这个输出,即输出数字 2 作为这个 XSL 的完整结果?

4

1 回答 1

0

这里不需要xsl:for-each,可以使用函数count来统计匹配给定条件的节点数

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:template match="musiclist">
      <xsl:value-of select="count(mp3[contains(location/@path, id) = 0])" />
   </xsl:template>
</xsl:stylesheet>

<xsl:value-of select="count(mp3[not(contains(location/@path, id))])" />考虑到contains返回真或假,表达式可能会更好地重写。

于 2013-10-11T07:03:26.570 回答