Table of Contents

Class JaroWinklerCalculator

Namespace
Shift.Common
Assembly
Shift.Common.dll
public static class JaroWinklerCalculator
Inheritance
JaroWinklerCalculator
Inherited Members

Methods

Distance(string, string)

Returns the Jaro-Winkler distance between the specified
strings. The distance is symmetric and will fall in the range 0 (perfect match) to 1 (no match).

public static double Distance(string aString1, string aString2)

Parameters

aString1 string
aString2 string

Returns

double

Proximity(string, string)

Returns the Jaro-Winkler distance between the specified
strings. The distance is symmetric and will fall in the range 0 (no match) to 1 (perfect match).

public static double Proximity(string a, string b)

Parameters

a string
b string

Returns

double