You could also use XML::Rules instead of XML::Simple as it gives you more detailed control over what data structure gets generated.
Something like:
use XML::Rules;
# at least 0.22 (for the stripspaces)
# see http://www.perlmonks.org/?node_id=658971
my $parser = XML::Rules->new(
rules => [
Text => 'content',
Entry => 'as array',
Report => 'pass',
Other => sub {return delete($_[1]->{name}) => $_[1]},
],
stripspaces => 3,
);
my $data = $parser->parse(\*DATA);
use Data::Dumper;
print Dumper($data);
__DATA__
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Report address="Address" name="IM Report" productID="INTRFC-MGR01">
<Entry detail="4" name="e_im_dev_io_entry">
<Text>Device Handle: 2</Text>
</Entry>
<Entry detail="4" name="e_im_dev_io_entry">
<Text>Device Handle: 5</Text>
</Entry>
<Other detail="4" name="first">
<Text>Device Handle: 5</Text>
</Other>
<Other detail="4" name="second">
<Text>Device Handle: 5</Text>
</Other>
</Report>
It doesn't try to guess as XML::Simple does so it's more work though. (In not yet released 0.23 the rule for the Other tag will be just Other => 'by name',.)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
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.
|
|