http://www.perlmonks.org?node_id=518214


in reply to XML::Parser - element data to hash?

Are you asking for each item in a hash? If so, something like:

my @items = @{$data->{channel}->{item}}; for my $hash ( @items ) { print 'title: ' . $hash->{title}; print 'link: ' . $hash->{link}; print 'desc: ' . $hash->{description}; }

But for RSS, consider one of the many CPAN modules.