Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neilb/text-levenshtein
Release history of Text-Levenshtein
https://github.com/neilb/text-levenshtein
Last synced: 18 days ago
JSON representation
Release history of Text-Levenshtein
- Host: GitHub
- URL: https://github.com/neilb/text-levenshtein
- Owner: neilb
- Created: 2014-04-20T14:14:41.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-04-16T11:07:10.000Z (over 2 years ago)
- Last Synced: 2024-11-06T00:45:21.159Z (2 months ago)
- Language: Perl
- Homepage: http://search.cpan.org/dist/Text-Levenshtein/
- Size: 45.9 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
Text::Levenshtein is an implementation of the Levenshtein edit distance in Perl.
If you're not familiar with this algorithm, a good place to start is
the wikipedia page:http://en.wikipedia.org/wiki/Levenshtein_distance
The SEE ALSO section in the documentation for this module lists
other modules on CPAN that calculate edit distances for two strings.PREREQUISITES
This suite requires Perl 5.6 or later, and only uses core modules.
INSTALLATION
You install Text::Levenshtein by running these commands in the *nix environment:
perl Makefile.PL
make
make test (optional)
make installTo install Text::Levenshtein in the Win32 environment, use nmake instead of make.
nmake is available for free (in a self extracting executable):After download and inflate, put nmake.exe and nmake.err in c:\windows\command .
DOCUMENTATION
POD format documentation is included in Levenshtein.pm.
You can read the documentation online:https://metacpan.org/pod/Text::Levenshtein
Or read it on your terminal, using the perldoc command:
perldoc Text::Levenshtein
AVAILABILITY
The latest version of Text::Levenshtein is available from CPAN
http://search.cpan.org/
https://metacpan.org/pod/Text::LevenshteinCOPYRIGHT
Copyright 2002 Dree Mistrut
Copyright (C) 2004-2014 Josh Goldberg.
Copyright (C) 2014- Neil Bowers.This package is free software and is provided "as is" without express
or implied warranty. You can redistribute it and/or modify it under
the same terms as Perl itself.This module is now maintained by Neil Bowers