xsl-list
[Top] [All Lists]

Re: [xsl] Split with delimiter and remove duplicate

2008-06-27 06:20:59
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/

--~------------------------------------------------------------------
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>