Function JaroWinklerDistanceMBS
JaroWinklerDistanceMBS(text as string, other as string) as double
Version: 1.4
Calculates the string distance.
Value is normalized, so 0.0 is equal text and 1.0 is totally unequal.
see also Jaro-Winkler distance on wikipedia.
Example queries:
select JaroWinklerDistanceMBS("Hello", "Hallo")
Back to function list.