apoc.text.jaroWinklerDistance
Function APOC Core
apoc.text.jaroWinklerDistance(text1, text2) - compare the given strings with the Jaro-Winkler distance algorithm.
Usage Examples
RETURN apoc.text.jaroWinklerDistance("Neo4j", "Neo4j") AS output;
output |
---|
1.0 |
RETURN apoc.text.jaroWinklerDistance("Neo4j", "Neoj4") AS output;
output |
---|
0.9533333333333333 |
RETURN apoc.text.jaroWinklerDistance("Neo4j Aura", "Neo4j Graph Database") AS output;
output |
---|
0.8400000000000001 |