Does a library or even standard API call exist that allows me to diff two strings and get the number of diff chars as an int? I wouldn't mind other features, just as long as I can get a more programmatic diff result (such as an int) instead of something that just outputs the entire human readable diff.
|
I think what you want is the Leveshtein distance - this tells you how many changes (insertions, deletions or replacements) are required to transform one string to another. For example, the difference between The difference between The difference between Here is an implementation in Java. |
|||
|
|
|
I don't know of any standard API calls, but you could see this question for references to third-party libraries (not surprising - Google, Apache Commons ...)
|
||||
|
steves car" with "steve's car". would that be 1 character different (just the "'") or 6 characters different (the whole "'s car")? i think there are several different ways of specifying this problem. – Kip Apr 15 '10 at 16:03