WebService::GoogleHack::Spelling is a Perl module that retrieves spelling suggestion given a string.
SYNOPSIS
use WebService::GoogleHack::Spelling;
#create an object of type spelling
my $spelling = WebService::GoogleHack::Spelling->new();
#make sure to initialize the correct wsdl file
$spelling->init("key","wsdl file");
$results = $spelling->spellingSuggestion($searchString);
#$results will be a string containing the suggestion (If there is a suggestion given by Google, otherwise it would be a null variable).
#The suggested "correction" string can also be accessed by,
#$spelling->{'correction'};
This module interacts with Google to retrieve a spelling suggestion given a string. It is used by the WebService::GoogleHack driver module.
Product's homepage
Requirements:
· Perl