xsl-list
[Top] [All Lists]

RE: [xsl] Parsing complex line (mixed text and markup)

2008-02-14 16:49:04
Then (at [G] above) process the new tbentry using grouping

  <xsl:for-each-group select="$temp/child::node()"
group-starting-with="comma">
    <entry><xsl:copy-of select="current-group()"/></entry>
  <xsl:for-each-group>

Not tested!

One bug I spotted on re-reading: it doesn't remove the <comma/> elements.
Change the copy-of to:

<entry><xsl:copy-of select="current-group()[not(self::comma)]"/></entry>

Michael Kay
http://www.saxonica.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>