levenshtein -is:package

Return the Levenshtein distance between two Text values. The Levenshtein distance between two strings is the minimal number of operations necessary to transform one string into another. For the Levenshtein distance allowed operations are: deletion, insertion, and substitution. See also: https://en.wikipedia.org/wiki/Levenshtein_distance. Heads up, before version 0.3.0 this function returned Natural.
Find the Levenshtein edit distance between two strings. That is to say, the number of deletion, insertion and substitution operations that are required to make the two strings equal. Note that this algorithm therefore does not make use of the transpositionCost field of the costs. See also: http://en.wikipedia.org/wiki/Levenshtein_distance.
Return the normalized Levenshtein distance between two Text values. Result is a non-negative rational number (represented as Ratio Natural), where 0 signifies no similarity between the strings, while 1 means exact match. See also: https://en.wikipedia.org/wiki/Levenshtein_distance. Heads up, before version 0.3.0 this function returned Ratio Natural.
Find the "restricted" Damerau-Levenshtein edit distance between two strings. This algorithm calculates the cost of the so-called optimal string alignment, which does not always equal the appropriate edit distance. The cost of the optimal string alignment is the number of edit operations needed to make the input strings equal under the condition that no substring is edited more than once. See also: http://en.wikipedia.org/wiki/Damerau-Levenshtein_distance.
Return the Damerau-Levenshtein distance between two Text values. The function works like levenshtein, but the collection of allowed operations also includes transposition of two adjacent characters. See also: https://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance. Heads up, before version 0.3.0 this function returned Natural.
Return the normalized Damerau-Levenshtein distance between two Text values. 0 signifies no similarity between the strings, while 1 means exact match. See also: https://en.wikipedia.org/wiki/Damerau%E2%80%93Levenshtein_distance. Heads up, before version 0.3.0 this function returned Ratio Natural.
Whether or not to use the Levenshtein distance to determine the score