xsl-list
[Top] [All Lists]

Re: [xsl] Split with delimiter and remove duplicate with xsl:for-each group

2008-06-30 06:11:00
Pankaj Chaturvedi wrote:

<xsl:template name="affiliation">
<xsl:for-each-group select=".//Affiliation" group-by="./Author/Affiliation">
<xsl:value-of select="current-grouping-key()"/>
 <xsl:for-each select="tokenize(., '\[\d+\]')[normalize-space(.)]">
<affil>
  <xsl:value-of select="normalize-space(current-grouping-key())"/>
</affil>
 </xsl:for-each>
</xsl:for-each-group>
</xsl:template>

I would first tokenize, then use xsl:for-each-group to remove duplicates:

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  version="2.0">

  <xsl:output method="xml" indent="yes"/>


  <xsl:template match="/">
    <xsl:variable name="affiliations" as="element()*">
<xsl:for-each select="for $a in Article/AuthorList/Author/Affiliation return tokenize($a, '\[\d+\]')[normalize-space(.)]">
        <affil>
          <xsl:value-of select="normalize-space(.)"/>
        </affil>
      </xsl:for-each>
    </xsl:variable>
    <affiliationList>
      <xsl:for-each-group select="$affiliations" group-by=".">
        <xsl:copy-of select="current-group()[1]"/>
      </xsl:for-each-group>
    </affiliationList>
  </xsl:template>

</xsl:stylesheet>


--

        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>