Re: Dereference Links

2011-01-27 Thread Mike Flannigan
On 1/25/2011 6:07 PM, Rob and Shawn wrote: Hey Mike What you have written can be fixed by changing it to for (my $num = 0; $num <= $#linkder; $num++) { print STDERR "@{$linkder[$num]}\n"; } or even for (my $num = 0; $num <= $#{$links}; $num++) { print STDERR "@{$links->[$num]}

Re: Dereference Links

2011-01-24 Thread Mike Flannigan
On 1/23/2011 5:21 PM, beginners-digest-h...@perl.org wrote: >That module hasn't been updated since 2001. You'll have a >much easier time using WWW::Mechanize and many more people will be in>a position to help you. >Peter Scott > Thank you for the reply. I appreciate it. Mike Flannigan

Re: Dereference Links

2011-01-24 Thread Rob Dixon
On 21/01/2011 14:01, Mike Flannigan wrote: I'm trying to dereference the @{$links} produced by WWW::SimpleRobot and am having a heck of a time getting it done. Can anybody help? You can see some of the things I have tried below. I know I can do this link extraction myself with LinkExtor, or at

Re: Dereference Links

2011-01-23 Thread shawn wilson
You also might want to look into Data::Dumper to see exactly what you're working with. Off the top though: map {@$_} @$arr might be a start.

Re: Dereference Links

2011-01-23 Thread Peter Scott
On Fri, 21 Jan 2011 08:01:03 -0600, Mike Flannigan wrote: > I'm trying to dereference the @{$links} produced by WWW::SimpleRobot and > am having a heck of a time getting it done. Can anybody help? You can > see some of the things I have tried below. That module hasn't been updated since 2001. Yo

Dereference Links

2011-01-21 Thread Mike Flannigan
I'm trying to dereference the @{$links} produced by WWW::SimpleRobot and am having a heck of a time getting it done. Can anybody help? You can see some of the things I have tried below. I know I can do this link extraction myself with LinkExtor, or at least think I can do it, but I'd like to kn