xsl-list
[Top] [All Lists]

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

2008-02-14 16:56:51
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(_at_)saxonica(_dot_)com> 
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/
 >




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



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