xsl-list
[Top] [All Lists]

Re: looping on a line (another XSLT 2.0 solution)

2005-11-29 08:47:03
I wrote:

It seems to me, though, that analyze-string
is a perfect fit for this kind of problem.

I forgot about the tokenize function, which is an even better fit for 
chopping up a character-separated list within an element. Here's that 
stylesheet.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xsl:stylesheet version="2.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

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

  <xsl:template match="d">
    <nos>
      <xsl:apply-templates/>
    </nos>
  </xsl:template>

  <xsl:template match="data">
    <xsl:for-each select="tokenize(., ',')">
      <no><xsl:value-of select="."/></no>
    </xsl:for-each>
  </xsl:template>

</xsl:stylesheet>

Tested with Saxon 8.6 again.

FWIW

Jay Bryant
Bryant Communication Services
(presently consulting at Synergistic Solution Technologies)

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