Levenstein Algorithm

Levenshtein distance (LD) is a measure of the similarity between two strings, which we will refer to as the source string (s) and the target string (t).
The distance the minimum number of single-character edits (i.e. insertions, deletions or substitutions) required to change one word into the other.e.g
Lev(George, Georg) = 1
Lev(Prague, Prag ) = 2
Lev(Rome, Rom )    = 1
The greater the Levenshtein distance, the more different the strings are.

Enter Your Tokens

Word1
Word2
Distance: 4
Levenshtein
01234567891011
M11234567891011
e2212345678910
i332234567889
l443334567899
e554434567789
n665543456788
s776654345678
t887765444567
e998876555456
i10109987666545
n1111101098777654