Is there any way to make it give the similar structure? use XML::Rules , just give xml2XMLRules the most complex detailed xml file you have, and you'll get rules/data like these
#!/usr/bin/perl --
use strict; use warnings;
use Data::Dump;
use XML::Rules;
my $ta = XML::Rules->new(
qw/ stripspaces 8 /,
rules =>
{
'literal' => 'as is',
'binding' => 'as array no content',
'uri' => 'content',
'results' => 'no content'
}
);
my @xml = (
q{<results>
<binding name="image_url">
<uri>Football.png</uri>
</binding>
<binding name="description">
<literal xml:lang="en">Second article.</literal>
</binding>
</results>
},
q{<results>
<binding name="description">
<literal xml:lang="en">First article. </literal>
</binding>
</results>
}
);
dd( my$ref = $ta->parsefile( \$_ )) for @xml;
__END__
{
results => {
binding => [
{ name => "image_url", uri => "Football.png" },
{
literal => { "_content" => "Second article.", "xml:lang" => "e
+n" },
name => "description",
},
],
},
}
{
results => {
binding => [
{
literal => { "_content" => "First article.", "xml:lang" => "en
+" },
name => "description",
},
],
},
}
Sure, you could get there with XML::Simple, but I don't bother anymore
Data::Diver for navigation :)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|