c# - Character wise sentence matching -


i have string compare set of string , need score(percentage) of equality of these 2 (ex: 1 one same:100% , differs:0%). issue strings consist japanese characters (japanese sentences not have spaces). how ever consists numerical characters (ex: キロシカインスプレー 2mg ).

what appropriate way perform this?

japanese characters still unicode.

use 1 of standard string comparison algorithms levenshtein distance.


Comments