in reply to Re: is this is a Bug in Module?
in thread is this is a Bug in Module?
But there is also another SYNOPSIS for the case where you're "USING XML::RSS::Parser VERSION 4.0":
Maybe XML::RSS::Parser version is the problem??my $fsp = XML::RSS::FOXSports->new; my $glxy_feed = $fsp->parse_mls_team('galaxy'); #-- output some values my $glxy_title = $glxy_feed->query('/channel/title'); print $glxy_title->text_content,"\n"; print $glxy_feed->item_count, "\n"; foreach my $i ( $glxy_feed->query('//item') ) { my $node = $i->query('title'); print ' ', $node->text_content, "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: is this is a Bug in Module?
by shekarkcb (Beadle) on Jul 21, 2008 at 06:17 UTC |