If you use Data::Dumper along with XML::Simple (the dynamic duo?) you can see that, using forcearray => 1 with XML::Simple, your XML becomes this:
$VAR1 = {
'node' => {
'edge2' => {
'community' => [
'anotherthing'
],
'loopback' => [
'10.6.21.10',
'10.12.71.14'
]
},
'edge1' => {
'community' => [
'something'
],
'loopback' => [
'172.16.254.10'
]
}
}
};
So, I believe you want something like this:
#! /usr/bin/perl
use strict ;
use warnings ;
use XML::Simple ;
#use Data::Dumper ;
my $xml = <<'EOD' ;
<network>
<node name="edge1">
<community>something</community>
<loopback>172.16.254.10</loopback>
</node>
<node name="edge2">
<community>anotherthing</community>
<loopback>10.6.21.10</loopback>
<loopback>10.12.71.14</loopback>
</node>
</network>
EOD
my $data = XMLin( $xml, forcearray => 1 ) ;
#print Dumper( $data ) ;
foreach my $key ( keys %{$data->{'node'}} )
{
foreach my $loopback ( @{$data->{'node'}{$key}{'loopback'}} )
{
print "key = $key; loopback = $loopback\n" ;
}
}
Output:
key = edge2; loopback = 10.6.21.10
key = edge2; loopback = 10.12.71.14
key = edge1; loopback = 172.16.254.10
_______________
D
a
m
n
D
i
r
t
y
A
p
e
Home Node
|
Email
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.
|
|