Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
$p = HTML::TokeParser->new(shift||"$file"); while (my $token = $p->get_tag("a")) { my $url = $token->[1]{href} || "-"; my $text = $p->get_trimmed_text("/a"); push @array, $url; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Why does cron kill this script??
by chipmunk (Parson) on Jan 07, 2002 at 02:56 UTC | |
|
Re: Why does cron kill this script??
by kschwab (Vicar) on Jan 07, 2002 at 05:25 UTC | |
|
Re: Why does cron kill this script??
by rbc (Curate) on Jan 07, 2002 at 05:42 UTC | |
by jeffa (Bishop) on Jan 07, 2002 at 06:51 UTC |