module Levenshtein
Overview
Levensthein distance methods.
Defined in:
levenshtein.crClass Method Summary
-
.distance(string1 : String, string2 : String) : Int32
Computes the levenshtein distance of two strings.
- .find(name, all_names, tolerance = nil)
- .find(name, tolerance = nil, &block)
Class Method Detail
Computes the levenshtein distance of two strings.
levenshtein("algorithm", "altruistic") # => 6
levenshtein("hello", "hallo") # => 1
levenshtein("こんにちは", "こんちは") # => 1
levensthein("hey", "hey") # => 0