Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-Text-Fuzzy/examples/
Upload File :
Current File : //usr/share/doc/perl-Text-Fuzzy/examples/list-context.pl

#!/usr/bin/perl
use warnings;
use strict;
use Text::Fuzzy;

my @funky_words = qw/nice funky rice gibbon lice graeme garden/;
my $tf = Text::Fuzzy->new ('dice');
my @nearest = $tf->nearest (\@funky_words);

print "The nearest words are ";
print join ", ", (map {$funky_words[$_]} @nearest);
printf ", distance %d.\n", $tf->last_distance ();