Re: [xsl] Split with delimiter and remove duplicate

Subject: Re: [xsl] Split with delimiter and remove duplicate
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Fri, 27 Jun 2008 14:46:10 +0200
Pankaj Chaturvedi wrote:

Input:
=======

 <affil>
 [1] 1This is the first affiliation (which repeats), will appear once in
affiliation list
 [2] 2This is the second affiliation, University of Wisconsin-Madison,
Madison, WI, USA</affil>


Output:
=======
<affils>
<affil>1This is the first affiliation, University of
Wisconsin-Madison, Madison, WI, USA</affil>
<affil>2This is the second affiliation, University of
Wisconsin-Madison, Madison, WI, USA</affil>
</affils>

With this template


  <xsl:template match="affil">
    <affils>
      <xsl:for-each select="tokenize(., '\[\d+\]')[normalize-space(.)]">
        <affil>
          <xsl:value-of select="normalize-space(.)"/>
        </affil>
      </xsl:for-each>
    </affils>
  </xsl:template>

and xsl:output indent="yes" the result will be

<affils>
<affil>1This is the first affiliation (which repeats), will appear once in affiliation list</affil>
<affil>2This is the second affiliation, University of Wisconsin-Madison, Madison, WI, USA</affil>
</affils>


which is slightly different from the output you describe above but it is not clear to me how the content you show in the first affil element in the output relates to the input.


--


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

Current Thread