The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Search::AcronymFinder - Perl interface to AcronymFinder.com

SYNOPSIS

use WWW::Search::AcronymFinder;
$search = new WWW::Search('AcronymFinder');
$search->native_query(WWW::Search::escape_query($query), { function => 'exact' });
while (my $result = $search->next_result()) {
  print "$result\n";
}

DESCRIPTION

This module is a subclass of WWW::Search and acts as a perl frontend to http://www.acronymfinder.com/.

Acronymfinder.com provides four functions to search acronyms: exact, prefix, wildcard, and reverse. If not specified, exact is assumed.

AUTHOR

xern <xern@cpan.org>

SEE ALSO

WWW::Search

findacronym.pl installed with WWW::Search::AcronymFinder

LICENSE

Released under The Artistic License.