Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: XML::Simple Array bombs out with 1 Item in document

by derby (Abbot)
on Jun 14, 2012 at 18:52 UTC ( [id://976279]=note: print w/replies, xml ) Need Help??


in reply to XML::Simple Array bombs out with 1 Item in document

Hmm ... well ... once you get paste the dodgy use of eval (do you really need to do that ... probably not). Basically the core problem is your data structure is not a hash of hashes but a hash of arrays of hashes.

foreach my $e ( @{$data->{channel}[0]{items}} ) { ... print $e->{title}[0] ... }
but you're probably better of just using XML::RSS:
my $rss = XML::RSS->new( version => '2.0' ); my $rss->parse( $rss_xml ); # print the title and link of each RSS item foreach my $item ( @{$rss->{items}} ) { print "title: $item->{title}\n"; print "link: $item->{link}\n"; print "desc: $item->{description}\n"; }

-derby

Replies are listed 'Best First'.
Re^2: XML::Simple Array bombs out with 1 Item in document
by Anonymous Monk on Jun 14, 2012 at 19:46 UTC
    Thanks. But my code does work well when there are 2 or more items

      That's great. But I hear the code doesn't work well when there is only 1 item.

      And that's the case that derby is talking about. You could check to see if you've got a hash (1 item) or an array (2+ items), using ref, or see about making them always be arrays in the module's options (see ForceArray).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://976279]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-24 08:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found