apoc.text.distance
Function
apoc.text.distance(text1 String, text2 String)
- compares the two given strings using the Levenshtein distance algorithm.
Usage Examples
RETURN apoc.text.distance("Levenshtein", "Levenstein") AS output;
output |
---|
1 |
Was this page helpful?