- or download this
use Data::Dumper;
my $content = join '', <DATA>;
my $response = XMLin($content);
print Dumper($response);
- or download this
$VAR1 = {
'offer' => {
...
}
}
};
- or download this
my $response = XMLin($content);
for my $id (keys %{$response->{offer}}) {
print $response->{offer}->{$id}->{zip}, "\n";
}
- or download this
48120
80236
43240