apoc.text.jaroWinklerDistance
Syntax |
|
||
Description |
Compares the two given |
||
Arguments |
Name |
Type |
Description |
|
|
The first string to be compared against the second. |
|
|
|
The second string to be compared against the first. |
|
Returns |
|
Usage Examples
RETURN apoc.text.jaroWinklerDistance("Neo4j", "Neo4j") AS output;
output |
---|
0.0 |
RETURN apoc.text.jaroWinklerDistance("Neo4j", "Neoj4") AS output;
output |
---|
0.046666666666666745 |
RETURN apoc.text.jaroWinklerDistance("Neo4j Aura", "Neo4j Graph Database") AS output;
output |
---|
0.15999999999999992 |