Subject: Re: Parsing complex line (mixed text and markup)
From: "Ilya Lifshits" <chehlo@xxxxxxxxx>
Date: Fri, 15 Feb 2008 01:56:30 +0200
|
Working exactly as i expected.
Thanks for the fix i was trying to find a way how to remove it before
i ask :) Like i sad I'm completely newbie.
Comma probably not a best delimiter, i will replace it with some
sequence, but the main idea is clear and working.
Regards Ilya.
On Fri, Feb 15, 2008 at 1:48 AM, Michael Kay <mike@xxxxxxxxxxxx> wrote:
> > 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/
|