Thanks in advance!
-Brad
scroll down the page to the "Simple Search" listing and download the zip or tar file.
-Brad
Is it internet (cgi) or console (command line)?
Do you wish to only match whole words or partial words or both?
Should the results be in any specific type of order?
Here is a super basic example (command line) of what you want:
#!perlprint "Please enter a breed of dog:";
chomp (my $keyword = <STDIN>);open(FH, 'path/to/list.txt') or die "Can't open list.txt: $!";
while(<FH>){
/\b$keyword\b/ and print;
}
close(FH);
exit;