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

Search results for "Text::Levenshtein"

Text::Levenshtein - calculate the Levenshtein edit distance between two strings River stage two • 7 direct dependents • 10 total dependents

This module implements the Levenshtein edit distance, which measures the difference between two strings, in terms of the *edit distance*. This distance is the number of substitutions, deletions or insertions ("edits") needed to transform one string i...

NEILB/Text-Levenshtein-0.15 - 16 Apr 2022 11:07:53 UTC - Search in distribution

Text::Levenshtein::BV - Bit Vector (BV) implementation of the Levenshtein Algorithm River stage zero No dependents

CONSTRUCTOR new() Creates a new object which maintains internal storage areas for the SES computation. Use one of these per concurrent SES() call. METHODS SES(\@a,\@b) Finds a Shortest Edit Script (SES), taking two arrayrefs as method arguments. It r...

WOLLMERS/Text-Levenshtein-BV-0.08 - 21 May 2022 14:20:25 UTC - Search in distribution

Text::Levenshtein::XS - Calculate edit distance based on insertion, deletion, and substitution River stage one • 4 direct dependents • 6 total dependents

Returns the number of edits (insert,delete,substitute) required to turn the source string into the target string. XS implementation (requires a C compiler). Works correctly with utf8. use Text::Levenshtein::XS qw/distance/; use utf8; distance('ⓕⓞⓤⓡ',...

UGEXE/Text-Levenshtein-XS-0.503 - 27 Jan 2016 21:08:46 UTC - Search in distribution

Text::Levenshtein::Edlib - XS edit distance and optimal alignment path calculation River stage zero No dependents

Text::Levenshtein::Edlib is a wrapper around the edlib library that computes Levenshtein edit distance and optimal alignment path for a pair of strings. It does not handle UTF-8 strings, for those Text::Levenshtein::XS can compute edit distance but n...

MGV/Text-Levenshtein-Edlib-0.001001 - 11 Mar 2017 22:38:28 UTC - Search in distribution

Text::Levenshtein::Damerau - Damerau Levenshtein edit distance. River stage one • 1 direct dependent • 2 total dependents

Returns the true Damerau Levenshtein edit distance of strings with adjacent transpositions. Useful for fuzzy matching, DNA variation metrics, and fraud detection. Defaults to using Pure Perl Text::Levenshtein::Damerau::PP, but has an XS addon Text::L...

UGEXE/Text-Levenshtein-Damerau-0.41 - 15 Jun 2013 02:59:46 UTC - Search in distribution

Text::Levenshtein::Flexible - XS Levenshtein distance calculation with bounds and costs River stage one • 3 direct dependents • 4 total dependents

Yet another Levenshtein module written in C, but a tad more flexible than the rest. This module uses code from PostgreSQL's levenshtein distance function to provide the following features on top of plain distance calculation as it is done by Levensht...

MBETHKE/Text-Levenshtein-Flexible-0.10 - 24 Apr 2023 09:51:43 UTC - Search in distribution

PERLANCAR::Text::Levenshtein - Calculate Levenshtein edit distance River stage one • 2 direct dependents • 2 total dependents

This module contains the routine "editdist" copied from App::perlbrew, which is copied from Wikipedia article "Levenshtein Distance"....

PERLANCAR/PERLANCAR-Text-Levenshtein-0.02 - 20 Sep 2015 15:22:11 UTC - Search in distribution

Text::Levenshtein::Damerau::XS - XS Damerau Levenshtein edit distance. River stage one • 1 direct dependent • 2 total dependents

Returns the true Damerau Levenshtein edit distance of strings with adjacent transpositions. XS implementation (requires a C compiler). Works correctly with utf8. use Text::Levenshtein::Damerau::XS qw/xs_edistance/; use utf8; xs_edistance('ⓕⓞⓤⓡ','ⓕⓤⓞⓡ...

UGEXE/Text-Levenshtein-Damerau-XS-3.2 - 10 Feb 2017 19:31:23 UTC - Search in distribution

Text::LevenshteinXS - An XS implementation of the Levenshtein edit distance River stage two • 13 direct dependents • 21 total dependents

This module implements the Levenshtein edit distance in a XS way. The Levenshtein edit distance is a measure of the degree of proximity between two strings. This distance is the number of substitutions, deletions or insertions ("edits") needed to tra...

JGOLDBERG/Text-LevenshteinXS-0.03 - 01 Jul 2004 01:45:48 UTC - Search in distribution

Bencher::Scenarios::TextLevenshteinFlexible - Scenarios to benchmark Text::Levenshtein::Flexible River stage one • 1 direct dependent • 1 total dependent

This distribution contains the following Bencher scenario modules: * Bencher::Scenario::TextLevenshteinFlexible::levenshtein_l...

PERLANCAR/Bencher-Scenarios-TextLevenshteinFlexible-0.002 - 25 Jan 2017 08:38:03 UTC - Search in distribution

dict - a perl client for accessing network dictionary servers River stage one • 1 direct dependent • 1 total dependent

dict is a client for the Dictionary server protocol (DICT), which is used to query natural language dictionaries hosted on a remote machine. When used in the most simple way, % dict word dict will look for definitions of *word* in the dictionaries ho...

NEILB/Net-Dict-2.22 - 08 Jun 2021 15:35:19 UTC - Search in distribution

cpan - easily interact with CPAN from the command line River stage three • 53 direct dependents • 522 total dependents

This script provides a command interface (not a shell) to CPAN. At the moment it uses CPAN.pm to do the work, but it is not a one-shot command runner for CPAN.pm. Options -a Creates a CPAN.pm autobundle with CPAN::Shell->autobundle. -A module [ modul...

ANDK/CPAN-2.36 - 14 May 2023 19:36:11 UTC - Search in distribution
  • App::Cpan - easily interact with CPAN from the command line

Bencher - A benchmark framework River stage zero No dependents

Bencher is a benchmark framework. The main feature of Bencher is permuting list of Perl codes with list of arguments into benchmark items, and then benchmark them. You can run only some of the items as well as filter codes and arguments to use. You c...

PERLANCAR/Bencher-1.062.4 - 19 Feb 2024 04:45:38 UTC - Search in distribution

editdist - Calculate edit distance using one of several algorithm River stage zero No dependents

PERLANCAR/App-LevenshteinUtils-0.002 - 23 Feb 2024 01:50:29 UTC - Search in distribution

compare-code - find files with similar code River stage zero No dependents

BORISD/School-Code-Compare-0.201 - 12 Nov 2023 10:17:50 UTC - Search in distribution

Data::BitStream - A bit stream class including integer coding methods River stage zero No dependents

A Moo class providing read/write access to bit streams including support for numerous variable length codes. Adding new codes as roles is easily done. An adaptive code (ARice) is included that typically will use fewer bits on most inputs than fixed c...

DANAJ/Data-BitStream-0.08 - 16 Aug 2014 03:37:57 UTC - Search in distribution

Music::Tag - Interface for collecting information about music files. River stage two • 10 direct dependents • 11 total dependents

Extendable module for working with Music Tags. Music::Tag Is powered by various plugins that collect data about a song based on whatever information has already been discovered. The motivation behind this was to provide a convenient method for fixing...

EALLENIII/Music-Tag-0.4103 - 21 Aug 2010 22:22:25 UTC - Search in distribution

Tree::VP - Vantage-Point Tree builder and searcher. River stage zero No dependents

GUGOD/Tree-VP-0.05 - 11 Jul 2016 21:05:48 UTC - Search in distribution

Config::Model::Node - Class for configuration tree node River stage two • 11 direct dependents • 11 total dependents

This class provides the nodes of a configuration tree. When created, a node object gets a set of rules that defines its properties within the configuration tree. Each node contain a set of elements. An element can contain: * A leaf element implemente...

DDUMONT/Config-Model-2.153 - 14 Jul 2023 17:35:53 UTC - Search in distribution

Data::BitStream::XS - A bit stream class including integer coding methods River stage zero No dependents

An XS implementation providing read/write access to bit streams. This includes many integer coding methods as well as straightforward ways to implement new codes. Bit streams are often used in data compression and in embedded products where memory is...

DANAJ/Data-BitStream-XS-0.08 - 16 Aug 2014 03:17:26 UTC - Search in distribution
59 results (0.057 seconds)