The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Text::Levenshtein::Damerau - Damerau Levenshtein edit distance

SYNOPSIS

  use Text::Levenshtein::Damerau qw(dld);

  print dld("foo","four");
  # prints "2"

  print dld("svee","seven");
  # prints "2"

  print dld("ABC","abC");
  # prints "2"

DESCRIPTION

Returns the true Damerau Levenshtein edit distance of strings with adjacent transpositions..

AUTHOR

ugexe <ug@skunkds.com>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.