#!/usr/bin/perl use XML::Simple; use Data::Dumper; my $xml = qq| 3 Are dingos your friend? Satisfactory 3 Should I have hit preview a second time? Yes 11 Should this run out of memory? No |; my $xml_ref = XMLin($xml); print Dumper $xml_ref; print $xml_ref->{'QuestionList'}->{'Question'}->[0]->{'Answer'};