xsl-list
[Top] [All Lists]

Re: [xsl] Know repeated values

2008-05-30 05:10:00
IZASKUN GUTIERREZ GUTIERREZ wrote:
Hello everybody!

I have this template:

 <xsl:template match="/">

         <xsl:value-of select="file/entry/@id"/>

    </xsl:template>

I need know if in the result there are  repeated values and what they are.

You can use xsl:for-each-group and count the current-group() sequence:

  <xsl:template match="/">
     <xsl:value-of select="file/entry/@id"/>
     <xsl:text>.</xsl:text>
     <xsl:for-each-group select="file/entry/@id" group-by=".">
       <xsl:variable name="count" select="count(current-group())"/>
       <xsl:if test="$count &gt; 1">
<xsl:value-of select="concat(current-grouping-key(), ' repeated ', $count, ' times.')"/>
       </xsl:if>
     </xsl:for-each-group>
  </xsl:template>




--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>