|
NAMEText::Levenshtein::Damerau::PP - Pure Perl Damerau Levenshtein edit distance.SYNOPSISuse Text::Levenshtein::Damerau::PP qw/pp_edistance/; print pp_edistance('Neil','Niel'); # prints 1 DESCRIPTIONReturns the true Damerau Levenshtein edit distance of strings with adjacent transpositions. Pure Perl implementation. Works correctly with utf8.use Text::Levenshtein::Damerau::PP qw/pp_edistance/; use utf8; pp_edistance('ⓕⓞⓤⓡ','ⓕⓤⓞⓡ'), # prints 1 METHODSpp_edistanceArguments: source string and target string.
Returns: int that represents the edit distance between the two argument. Stops calculations and returns -1 if max distance is set and reached. Function to take the edit distance between a source and target string. Contains the actual algorithm implementation. use Text::Levenshtein::Damerau::PP qw/pp_edistance/; print pp_edistance('Neil','Niel'); # prints 1 print pp_edistance('Neil','Nielx',1); # prints -1 SEE ALSO
BUGSPlease report bugs to:<https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Levenshtein-Damerau> AUTHORNick Logan <ug@skunkds.com>LICENSE AND COPYRIGHTThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |