Help for this page

Select Code to Download


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