strcmp2

This page (named as a successor to the C strcmp function) provides string comparison using various string comparison methods. The methods are implemented in a Perl script by my former supervisor, Dr. Greg Kondrak.

String 1
String 2
Method IDENT: Simple identity; returns 1 if the strings are equal, 0 otherwise.
SIMARD: Length of the common prefix.
SOUNDEX: A venerable method of matching personal names.
DICE: Number of common bigrams.
TRI: Number of common trigrams.
XDICE: See (Brew and McKelvie, 1996).
XXDICE: Ibid.
LCSR: Longest common subsequence ratio.
EDIT: Levenshtein (edit) distance.
BI-SIM: See (Kondrak, 2005).
TRI-SIM: Ibid.
BI-DIST: Ibid.
TRI-DIST: Ibid.
Options Normalize by length

References