Returns the number of corrections that would need to be applied to transform one string into the other.
specifies a string to be used in the comparison; this can be specified as string constant, field name, or expression.
distance = edit_distance("hello", "hllo" ) // outputs 1 distance = edit_distance("hello", "hlelo" ) // outputs 2 distance = edit_distance("hello", "hey" ) // outputs 3