Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Sort xml nodes by schema

by AlexTape (Monk)
on Sep 11, 2013 at 08:25 UTC ( [id://1053431]=note: print w/replies, xml ) Need Help??


in reply to Sort xml nodes by schema

fyi: something crosses my mind this morning
you can output a hash in the same order as you inserted elements into it
use Tie::IxHash; tie %hash, "Tie::IxHash"; $hash{any1}="first"; $hash{some1}="second"; $hash{big1}="third"; foreach $foo (keys %hash) { print " $foo\n"; } while (( $foo, $bar ) = each %hash ) { print "$foo is $bar"; }
output should be:
>any1 is first
>some1 is second
>big1 is third
maybe XML::Simple adopt that.. dnt knw..

kindly perlig

$perlig =~ s/pec/cep/g if 'errors expected';

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1053431]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-25 13:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found