http://qs321.pair.com?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.

Replies are listed 'Best First'.
Re^2: XML::Parser - element data to hash?
by senik148 (Beadle) on Dec 21, 2005 at 17:24 UTC
    Give me some of your brains. :) Thanx to both of you, the code did what i wanted. and i got the output i wanted. Thanx, i gave both of you + points. peace
    ruben r.