Subject: | No unicode support |
It seems that the module doesn't take unicode chars into account. Heres
is an example:
use Text::WagnerFischer qw{ distance };
print distance("Æble", "Øble"), "\n";
print distance("Æble", "Able"), "\n";
print distance("Bble", "Able"), "\n";
Should print:
1
1
1
But prints:
1
2
1
The probably happens because the module treats each byte as a char.