XSLT 1.0计数元素在属性中具有相同的值,并显示它

时间:2010-06-03 12:09:00

标签: xslt count html-table xslt-1.0

我有一个包含以下内容的变量:

<col p1="Newman" p2="Paul"/>
...
<col p1="Newman" p2="Paolo"/>
<col p1="Newman" p2="Paul"/>

我在输出中输出一个表,其中第一列是p2的值,第二列是它出现的时间。对于p2的每个值,我应该只有一行。

<table>
<tr><td>p2</td><td>num</td></tr>
<tr><td>Pault</td><td>2</td>
...
<tr><td>Paolo</td><td>1</td>
</table>

1 个答案:

答案 0 :(得分:0)

使用XSL密钥轻松。

<!-- index all <col> elements by their @p2 attribute -->
<xsl:key name="kColByFirstname" match="col" use="@p2" />

<xsl:template match="/RootElement">
  <table>
    <tr>
      <td>p2</td><td>num</td>
    </tr>
    <!-- select the respective first <col> of each group -->
    <xsl:apply-templates select="col[
      generate-id() = generate-id(key('kColByFirstname', @p2)[1])
    ]" />
  </table>
</xsl:template>

<xsl:template match="col">
  <tr>
    <!-- output the current value of @p2 and its group count -->
    <td><xsl:value-of select="@p2"/></td>
    <td><xsl:value-of select="count(key('kColByFirstname', @p2))" /></td>
  </tr>
</xsl:template>