0

给定以下xml:

<parameterGroup>
    <parameter value="1" name="Level0_stratum">
    </parameter>
    <parameter value="1" name="Level2_stratum">
    </parameter>
    <parameter value="1" name="Level1_stratum">
    </parameter>
    <parameter value="6" name="foo">
    </parameter>       
    <parameter value="9" name="bar">
    </parameter>    
</parameterGroup>

我想派生一个布尔变量,指示所有 Level*_stratum 值的@value 是否相同,在这种情况下它们是 (1)。

到目前为止,我已经能够将所有相关节点分组如下:

select="//parameter[starts-with(@name,'Level') and ends-with(@name,'_stratum') ]"

但我不确定比较所有@value 属性是否相等的最有效方法?

4

2 回答 2

2

如果 ends-with() 可用,那么您使用的是 XSLT 2.0,因此 distinct-values() 可用,因此您可以简单地做

count(distinct-values(
  //parameter[starts-with(@name,'Level') and ends-with(@name,'_stratum') ])/@value))
= 1
于 2013-02-04T14:41:51.997 回答
1

我相信这应该做你想做的事情(这些value-of行不是必需的,只是在那里显示变量的值):

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>

    <xsl:template match="/">
      <xsl:variable 
             name="allStrata"
             select="//parameter[starts-with(@name, 'Level') and
                                 ends-with(@name, '_stratum')]" />
      <xsl:value-of select="concat(count($allStrata), ' strata. ')"/>

      <!-- Determines whether all strata have the same values by comparing them all 
             against the first one. -->
      <xsl:variable name="allStrataEqual" 
                    select="not($allStrata[not(@value = $allStrata[1]/@value)])" />

      <xsl:value-of select="concat('All equal: ', $allStrataEqual)" />
    </xsl:template>
</xsl:stylesheet>

当在上面的示例输入上运行时,结果是:

3 strata. All equal: true

value在将第三个更改为 8(或其他任何内容)后在您的示例输入上运行此命令时,结果为:

3 strata. All equal: false
于 2013-02-04T03:30:44.693 回答