in reply to Re: Help With Parsing XML format / Hash of Hashes
in thread Help With Parsing XML format / Hash of Hashes
my $second_suggestion = $result1->{'Suggestions'}[1];
to get a copy of the entire array of suggestions, use
my @suggestions = @{ $result1->{'Suggestions'} };
see the Perl Data Structures Cookbook perldsc for more info and related links.
|
|---|