Maybe I'm missing something. find_link only gets one link.
I'm looking for a routine that would gets a list of all
links on a page that match a regex.
The application is a harvester program that gets course
information from an online catalog. I want to download
all of the links that match a regex.
Maybe the routine should be called
$agent->find_links(text_regex=>qr/test/);
[PETDANCE - Mon May 26 21:45:28 2003]:
Show quoted text> > $agent->get_abs_hrefs(qr/test/);
> >
> > Which gets a list of hrefs with matching the regex test, the hrefs
> > would
> > also be absolute hrefs.
>
> What's wrong with
>
> $agent->find_link( text_regex => qr/test/i );
>
> Am I missing something?
>
>