如何计算节点中的不同值?

时间:2008-09-30 14:05:45

标签: xml xslt xslt-grouping

如何计算XSLT中节点中的不同值?

示例:我想计算国家/地区节点中现有国家/地区的数量,在这种情况下,它将为3。

<Artists_by_Countries>
    <Artist_by_Country>
        <Location_ID>62</Location_ID>
        <Artist_ID>212</Artist_ID>
        <Country>Argentina</Country>
    </Artist_by_Country>
    <Artist_by_Country>
        <Location_ID>4</Location_ID>
        <Artist_ID>108</Artist_ID>
        <Country>Australia</Country>
    </Artist_by_Country>
    <Artist_by_Country>
        <Location_ID>4</Location_ID>
        <Artist_ID>111</Artist_ID>
        <Country>Australia</Country>
    </Artist_by_Country>
    <Artist_by_Country>
        <Location_ID>12</Location_ID>
        <Artist_ID>78</Artist_ID>
        <Country>Germany</Country>
    </Artist_by_Country>
</Artists_by_Countries>

4 个答案:

答案 0 :(得分:26)

如果您有一个大文档,您可能希望使用通常用于分组的“Muenchian方法”来识别不同的节点。声明一个键,用于通过不同的值索引要计数的内容:

<xsl:key name="artists-by-country" match="Artist_by_Country" use="Country" />

然后,您可以使用以下内容获取具有不同国家/地区的<Artist_by_Country>元素:

/Artists_by_Countries
  /Artist_by_Country
    [generate-id(.) =
     generate-id(key('artists-by-country', Country)[1])]

你可以通过在调用count()函数中包装它来计算它们。

当然在XSLT 2.0中,它就像

一样简单
count(distinct-values(/Artists_by_Countries/Artist_by_Country/Country))

答案 1 :(得分:6)

在XSLT 1.0中,这并不明显,但以下内容应该让您了解需求:

count(//Artist_by_Country[not(Location_ID=preceding-sibling::Artist_by_Country/Location_ID)]/Location_ID)

XML中的元素越多,所需的时间就越长,因为它会检查每个元素的每个前面的兄弟元素。

答案 2 :(得分:5)

尝试这样的事情:

count(//Country[not(following::Country/text() = text())])

“给我所有国家/地区节点的计数,但没有跟随国家/地区的匹配文字”

该表达式的有趣位IMO是following轴。

你也可以删除第一个/text(),然后用.

替换第二个{{1}}

答案 3 :(得分:0)

如果您在国家/地区第一次出现时控制了xml生成,则可以向国家/地区节点添加属性,例如distinct ='true'将该国家/地区标记为“已使用”,如果您已将该国家/地区添加为不同属性再次遇到那个国家。

然后你可以做

<xsl:for-each select="Artists_by_Countries/Artist_by_Country/Country[@distinct='true']" />