in reply to Re^2: perl script to print xml data like this
in thread perl script to print xml data like this

The error does not occur with the sample so the actual xml is apparently different than what you provided. To get rid of the sorting error, just don't sort the output.

14 foreach my $code ( keys %by_code ) {

If you need the output exactly as it was, you will need to use a solution other than XML::Simple. As I said:

It does not keep the exact XML formatting but that is something that is lost when XML::Simple parses it.
l8rZ,
--
andrew

Replies are listed 'Best First'.
Re^4: perl script to print xml data like this
by veerubiji (Sexton) on Oct 05, 2011 at 07:16 UTC

    thanks for your reply and suggestion i got my answer.