Por favor - não use sed
- não é uma ferramenta adequada para o trabalho.
Eu usaria o perl:
#!/usr/bin/env perl
use strict;
use warnings;
use XML::Twig;
my $twig = XML::Twig->new( 'pretty_print' => 'indented_a' );
$twig->parsefile ( 'your_file.xml' );
foreach my $thing ( $twig -> root -> children ) {
my $newthing = $twig -> root -> insert_new_elt($thing->tag);
foreach my $key ( keys %{$thing -> atts()} ) {
$newthing -> insert_new_elt($key, $thing -> att($key));
}
$thing -> delete;
}
$twig->print;
Saídas:
<root>
<book>
<pages>350</pages>
<name>Data Structure</name>
<price>250</price>
</book>
</root>
Isso é bem simples, porque estamos trabalhando com um hash att()
(anônimo). Para escolher um atributo, temos que fazer um pouco mais - precisamos definir que queremos manter name
e inserir isso como um atributo do nosso elemento pai.
Isso usa map
, o que pode ser um pouco doloroso:
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
use XML::Twig;
my %keep_att = ( name => 1 );
my $twig = XML::Twig->new( 'pretty_print' => 'indented_a' );
$twig->parse( \*DATA );
foreach my $thing ( $twig->root->children ) {
my $newthing = $twig->root->insert_new_elt( $thing->tag,
{ map { $_ => $thing->att($_) } keys %keep_att } );
foreach my $key ( keys %{ $thing->atts() } ) {
next if $keep_att{$key};
$newthing->insert_new_elt( $key, $thing->att($key) );
}
$thing->delete;
}
$twig->print;
__DATA__
<root>
<book name="Data Structure" price="250" pages="350"/>
</root>
Isso produz:
<root>
<book name="Data Structure">
<price>250</price>
<pages>350</pages>
</book>
</root>
Agora, o que está acontecendo com isso map
é que estamos basicamente dividindo os atributos que queremos manter - e reinserindo-os em nosso novo elemento - e os elementos que nós não fazemos quer manter e transformá-los em crianças.
Um pouco como isto:
foreach my $thing ( $twig->root->children ) {
my %attributes = %{$thing->atts()};
my %new_children;
foreach my $attr ( keys %attributes ) {
if ( $keep_att{$attr} ) {
#leave it in %attributes;
}
else {
$new_children{$attr} = $attributes{$attr};
delete $attributes{$attr}
}
}
print Dumper \%attributes;
print Dumper \%new_children;
my $newthing = $twig->root->insert_new_elt( $thing->tag,
{ %attributes } );
foreach my $key ( keys %new_children ) {
$newthing->insert_new_elt( $key, $new_children{$key} );
}
$thing->delete;
}