• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Text/H24-Mar-2021-25677

t/H24-Mar-2021-481384

ChangesH A D24-Mar-20213 KiB9064

LICENSEH A D24-Mar-202117.9 KiB380292

MANIFESTH A D24-Mar-2021377 2120

META.jsonH A D24-Mar-20211.6 KiB6462

META.ymlH A D24-Mar-2021972 3938

Makefile.PLH A D24-Mar-20211.5 KiB6655

READMEH A D24-Mar-20211.6 KiB6436

dist.iniH A D24-Mar-2021458 2522

README

1
2Text::Levenshtein is an implementation of the Levenshtein edit distance in Perl.
3If you're not familiar with this algorithm, a good place to start is
4the wikipedia page:
5
6    http://en.wikipedia.org/wiki/Levenshtein_distance
7
8The SEE ALSO section in the documentation for this module lists
9other modules on CPAN that calculate edit distances for two strings.
10
11
12PREREQUISITES
13
14This suite requires Perl 5.6 or later, and only uses core modules.
15
16
17INSTALLATION
18
19You install Text::Levenshtein by running these commands in the *nix environment:
20
21   perl Makefile.PL
22   make
23   make test (optional)
24   make install
25
26To install Text::Levenshtein in the Win32 environment, use nmake instead of make.
27nmake is available for free (in a self extracting executable):
28<http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe>
29After download and inflate, put nmake.exe and nmake.err in c:\windows\command .
30
31
32DOCUMENTATION
33
34POD format documentation is included in Levenshtein.pm.
35You can read the documentation online:
36
37    https://metacpan.org/pod/Text::Levenshtein
38
39Or read it on your terminal, using the perldoc command:
40
41  perldoc Text::Levenshtein
42
43
44
45AVAILABILITY
46
47The latest version of Text::Levenshtein is available from CPAN
48
49    http://search.cpan.org/
50    https://metacpan.org/pod/Text::Levenshtein
51
52
53COPYRIGHT
54
55Copyright 2002 Dree Mistrut <dree@friul.it>
56Copyright (C) 2004-2014 Josh Goldberg.
57Copyright (C) 2014- Neil Bowers.
58
59This package is free software and is provided "as is" without express
60or implied warranty.  You can redistribute it and/or modify it under
61the same terms as Perl itself.
62
63This module is now maintained by Neil Bowers <neilb@cpan.org>
64