- or download this
$xml->findnodes('/x:ItemLookupResponse/x:Items/x:Item')
- or download this
$item->findvalue('ASIN')
- or download this
$xml->findvalue('x:ASIN', $item)
- or download this
#!/usr/bin/perl
...
say $item->firstChild->toString;
say $xpc->findvalue('x:ASIN', $item);
}