Description
Computes the Levenshtein Distance between 2 string. Used for fuzzy matching.
Signature
LevenshteinDistance('inputstring1', 'inputstring2')
Example
LevenshteinDistance('microsoft', 'microsft') Returns 1
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| inputstring1 | xxxx | xxxx | xxxx |
| inputstring2 | xxxx | xxxx | xxxx |
