I just signed up for Amazon's Product Advertising API, and I got the sample Perl script working to send a request to look up an ISBN number and receive a response.
I can parse out the LowestUsedPrice (which is all I need) with a regular expression, but is there some way to access the XML field directly? I know nothing about XML, besides that it's a way to format data.
The XML is in a hash called $xml, which was created with these lines of the sample script:
my $xmlParser = new XML::Simple();
my $xml = $xmlParser->XMLin($content);
I'm sure someone here has done this before, right?