Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Sort n Create XML

by misc (Friar)
on Aug 20, 2007 at 09:41 UTC ( [id://633755]=note: print w/replies, xml ) Need Help??


in reply to Sort n Create XML

TIMTOWTDI :-)
Here is my version, utilizing XML::Twig

#!/usr/bin/perl -w use strict; use warnings; use XML::Twig; my $t= XML::Twig->new(pretty_print=>'indented'); $t->parse( join('',<DATA>) ); $t->root->sort_children( sub{ my $e = shift; return 0 if $e->tag eq 'header'; return 10000000 if $e->tag eq 'footer'; my @strength = $e->getElementsByTagName('strength') or + die "Malformed element:\n".$e->sprint; return $strength[0]->text; }, type=>'numeric' ); $t->print; __DATA__ <?xml version="1.0" encoding="UTF-8"?> <system> <header></header> <class> <name>Eight</name> <strength>8</strength> </class> <class> <name>Four</name> <strength>4</strength> </class> <class> <name>Ten</name> <strength>10</strength> </class> <class> <name>One</name> <strength>1</strength> </class> <footer></footer> </system>
The sort sub function is quite ugly and buggy,
if you are going to use Twig, you should either print the header, footer and the sorted classes in separate prints or surround all classes with a e.g. <allclasses> tag.

I just wanted to give an idea how you could use Twig for the job.

Log In?
Username:
Password:

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

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

    No recent polls found