Skip Menu |

This queue is for tickets about the Text-WagnerFischer CPAN distribution.

Report information
The Basics
Id: 29895
Status: new
Priority: 0/
Queue: Text-WagnerFischer

People
Owner: Nobody in particular
Requestors: MADZ [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.04
Fixed in: (no value)



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.