|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: looping on a line (another XSLT 2.0 solution)
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)
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






