XSLT检查重复值

时间:2014-01-23 22:31:14

标签: xml xslt

我有一个这样的传入XML:

<comm>
 <source id ="1">TV</source>
 <source id ="2">Radio</source>
 <source id ="3">TV</source>
 <source id ="4">Computer</source>
</comm>

我需要一个XSLT来生成输出XML,如下所示:

<comm>
 <type id ="1">TV</source>
 <type id ="2">Radio</source>
 <type id ="4">Computer</source>
</comm>

基本上我希望XSLT遍历每个<source>元素并创建一个<type>元素。但是如果<type>元素的值已经存在,则XSLT将跳过创建元素。 例如,如果你看一下传入的XML电视&#39;值出现两次;所以XSLT只会创建一次具有TV值的元素。

我很难搞清楚这一点。我正在使用XSLT 2.0。

我尝试通过动态更新变量,然后删除重复值来做到这一点。但XSLT无法改变变量。

1 个答案:

答案 0 :(得分:0)

这在XSLT 2.0中非常直接,使用 xsl:for-each-group ,尽管您只需要选择每个组中的第一个元素。

您正在按文字值检查来源元素,所以您需要做的就是这个

<xsl:for-each-group select="source" group-by="text()">

来源更改为类型只是通过一个简单的模板

<xsl:template match="source">
   <type>
        <xsl:apply-templates select="@*|node()"/>
   </type>
</xsl:template>

试试这个XSLT

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

   <xsl:template match="/*">
        <xsl:copy>
           <xsl:for-each-group select="source" group-by="text()">
                <xsl:apply-templates select="."/>
           </xsl:for-each-group>
         </xsl:copy>
    </xsl:template>

    <xsl:template match="source">
        <type>
            <xsl:apply-templates select="@*|node()"/>
        </type>
    </xsl:template>

   <xsl:template match="@*|node()">
        <xsl:copy>
           <xsl:apply-templates select="@*|node()"/>
         </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

请注意使用identity template复制现有元素。

阅读http://www.xml.com/lpt/a/1314,了解有关 xsl:for-each-group 的大量帮助信息。