JAROWINKLER_SIMILARITY¶
JAROWINKLER_SIMILARITY(string0, string1)
Computes the Jaro-Winkler similarity between string0
and string1
as an integer between 0 and 100 (with 0
being no similarity and 100 being an exact match). The computation
is not case-sensitive, but is sensitive to spaces or formatting
characters. A scaling factor of 0.1 is used for the computation.
For the definition of Jaro-Winkler similarity, see here.