in reply to Re^3: Filter Data
in thread Filter Data

use WWW::Mechanize; use strict; my $mech = WWW::Mechanize->new(); my $url = "http://www. thebaseballcube. com/teams/team_32. shtml"; $mech->get( $url ); $mech->follow_link( text_regex => 2005 );
Ok so for $mech->follow_link( text_regex => qr/download this/i ; I could type something like 2005 and it download the 2005 page?