[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: reorder child nodes
ratna ratna wrote:
I have a question. I have a source xml with nodes which need to be reordered before transformation. "before" transformation? An XSLT stylesheet does a transformation and can reorder nodes with a transformation. <books> <book> <fiction></fiction> <drama></drama> <bio></bio> With XSLT 2.0: <xsl:template match="@* | node()"> <xsl:copy> <xsl:apply-templates select="@*, node()"/> </xsl:copy> </xsl:template> <xsl:template match="book"> <xsl:copy> <xsl:apply-templates select="@*, bio, fiction, drama"/> </xsl:copy> </xsl:template> -- Martin Honnen http://msmvps.com/blogs/martin_honnen/
|
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
|