- or download this
foreach $products (@{$file->{product}}) {
print "Widget: " . $products->{title} ." \n";
...
print " Cost: " . $products->{cost} . "\n";
print "Colors: " . join(', ', @{$products->{color}})."\n\n";
}
- or download this
<shelf>
<product>
...
<color>white</color>
</product>
</shelf>
- or download this
<shelf>
<product>
...
<color>orange</color>
</product>
</shelf>
- or download this
sub list {
if (defined(ref($_[0])) && ref($_[0]) eq 'ARRAY') {
...
print " Cost: " . $products->{cost} . "\n";
print "Colors: " . join(', ', list($products->{color}))."\n\n";
}