vote up 5 vote down star
3

I'm looking for a string similarity algorithm that yields better results on variable length strings than the ones that are usually suggested (levenshtein distance, soundex, etc).

For example,

Given string A: "Robert",

Then string B: "Amy Robertson"

would be a better match than

String C: "Richard"

Also, preferably, this algorithm should be language agnostic (also works in languages other than English).

flag

4 Answers

vote up 6 vote down check

Simon White of Catalysoft wrote an article about a very clever algorithm that compares adjacent character pairs that works really well for my purposes:

http://www.catalysoft.com/articles/StrikeAMatch.html

Simon has a Java version of the algorithm and below I wrote a PL/Ruby version of it (taken from the plain ruby version done in the related forum entry comment by Mark Wong-VanHaren) so that I can use it in my PostgreSQL queries:

CREATE FUNCTION string_similarity(str1 varchar, str2 varchar)
RETURNS float8 AS '

str1.downcase! 
pairs1 = (0..str1.length-2).collect {|i| str1[i,2]}.reject {
  |pair| pair.include? " "}
str2.downcase! 
pairs2 = (0..str2.length-2).collect {|i| str2[i,2]}.reject {
  |pair| pair.include? " "}
union = pairs1.size + pairs2.size 
intersection = 0 
pairs1.each do |p1| 
  0.upto(pairs2.size-1) do |i| 
    if p1 == pairs2[i] 
      intersection += 1 
      pairs2.slice!(i) 
      break 
    end 
  end 
end 
(2.0 * intersection) / union

' LANGUAGE 'plruby';

Works like a charm!

link|flag
You found the answer and wrote all that in 4 minutes? Impressive! – Matt J Mar 17 at 6:26
Interestingly, Simon's approach has a lot in common with approaches such as q-grams and Dice's Coefficient. – Jason Sundram Mar 17 at 7:38
I prepared my answer after some research and implementation. I put it here to the benefit of whoever else comes looking in SO for a practical answer using an alternative algorithm because most of the answers in related questions seem to revolve around levenshtein or soundex. – marzagao Mar 19 at 1:24
vote up 2 vote down

String Similarity Metrics contains an overview of many different metrics used in string comparison (Wikipedia has an overview as well). Much of these metrics is implemented in a library simmetrics.

Yet another example of metric, not included in the given overview is for example compression distance (attempting to approximate the Kolmogorov's complexity), which can be used for a bit longer texts than the one you presented.

You might also consider looking at a much broader subject of Natural Language Processing. These R packages can get you started quickly (or at least give some ideas).

And one last edit - search the other questions on this subject at SO, there are quite a few related ones.

link|flag
vote up 0 vote down

What about Levenshtein distance, divided by the length of the first string (or alternatively divided my min/max/avg length of both strings)? That has worked for me so far.

link|flag
vote up 0 vote down

marzagao's aswer is great. I converted it to C# so I thought I'd post it here:

/// <summary>
/// This class implements string comparison algorithm
/// based on character pair similarity
/// Source: http://www.catalysoft.com/articles/StrikeAMatch.html
/// </summary>
public class SimilarityTool
{
    /// <summary>
    /// Compares the two strings based on letter pair matches
    /// </summary>
    /// <param name="str1"></param>
    /// <param name="str2"></param>
    /// <returns>The percentage match from 0.0 to 1.0 where 1.0 is 100%</returns>
    public double CompareStrings(string str1, string str2)
    {
    	List<string> pairs1 = WordLetterPairs(str1.ToUpper());
    	List<string> pairs2 = WordLetterPairs(str2.ToUpper());

    	int intersection = 0;
    	int union = pairs1.Count + pairs2.Count;

    	for (int i = 0; i < pairs1.Count; i++)
    	{
    		for (int j = 0; j < pairs2.Count; j++)
    		{
    			if (pairs1[i] == pairs2[j])
    			{
    				intersection++;
    				pairs2.RemoveAt(j);//Must remove the match to prevent "GGGG" from appearing to match "GG" with 100% success

    				break;
    			}
    		}
    	}

    	return (2.0 * intersection) / union;
    }

    /// <summary>
    /// Gets all letter pairs for each
    /// individual word in the string
    /// </summary>
    /// <param name="str"></param>
    /// <returns></returns>
    private List<string> WordLetterPairs(string str)
    {
    	List<string> AllPairs = new List<string>();

    	// Tokenize the string and put the tokens/words into an array
    	string[] Words = Regex.Split(str, @"\s");

    	// For each word
    	for (int w = 0; w < Words.Length; w++)
    	{
    		if (!string.IsNullOrEmpty(Words[w]))
    		{
    			// Find the pairs of characters
    			String[] PairsInWord = LetterPairs(Words[w]);

    			for (int p = 0; p < PairsInWord.Length; p++)
    			{
    				AllPairs.Add(PairsInWord[p]);
    			}
    		}
    	}

    	return AllPairs;
    }

    /// <summary>
    /// Generates an array containing every 
    /// two consecutive letters in the input string
    /// </summary>
    /// <param name="str"></param>
    /// <returns></returns>
    private string[] LetterPairs(string str)
    {
    	int numPairs = str.Length - 1;

    	string[] pairs = new string[numPairs];

    	for (int i = 0; i < numPairs; i++)
    	{
    		pairs[i] = str.Substring(i, 2);
    	}

    	return pairs;
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.