Hi Please try this and it will help you and please try to print the data accordingly from the complex data XML::Simple will pass the xml data and will create a nested data structure and you can bring your data from that
#!/usr/bin/perl
use XML::Simple;
local $/ = undef;
$xml_data = <DATA>;
$xml_simple = XML::Simple->new( KeepRoot => 1,
KeyAttr => 1,
ForceArray => 1
);
$xml_obj_data = $xml_simple->XMLin($xml_data);
use Data::Dumper;
print Dumper($xml_obj_data);
__DATA__
<OrderDetail>
<ListOfItemDetail>
<ItemDetail>
<BuyerLineItemNum>1</BuyerLineItemNum>
<ListOfStructuredNote>
<StructuredNote>
<GeneralNote>Line 1 Text.</GeneralNote>
</StructuredNote>
</ListOfStructuredNote>
</ItemDetail>
<ItemDetail>
<BuyerLineItemNum>2</BuyerLineItemNum>
<ListOfStructuredNote>
<StructuredNote>
<GeneralNote>Line 2 Text.</GeneralNote>
</StructuredNote>
</ListOfStructuredNote>
<ListOfStructuredNote>
<StructuredNote>
<GeneralNote>More Line 2 Text.</GeneralNote>
</StructuredNote>
</ListOfStructuredNote>
</ItemDetail>
</ListOfItemDetail>
</OrderDetail>
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.
|
|