xsl-list
[Top] [All Lists]

[xsl] reorder child nodes

2010-04-12 09:41:37
Hi list

I have a question. I have a source xml with nodes which need to be
reordered before transformation.

<books>
<book>
<fiction></fiction>
<drama></drama>
<bio></bio>

</book>

</books>

I want the output to look like



<books>
<book>

<bio></bio>
<fiction></fiction>
<drama></drama>
</book>

</books>

Can I do that in XSLT? Or should I be looking at Java DOM?


Thanks!

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