Description | The |
Syntax | LEVENSHTEIN( |
Output | number |
Variables
text1
: The first text string for comparison.text2
: The second text string for comparison.
Example
LEVENSHTEIN(`Text1`,`Text2`)
ID | Text1 | Text2 | LEVENSHTEIN |
1 | Hello | Hallo | 1 |
2 | Example | Sample | 2 |
3 | Kitten | Sitting | 3 |