I'm wondering if there is some kind of way to do fuzzy string matching in PHP. Looking for a word in a long string, finding a potential match even if its mis-spelled; something that would find it if it was off by one character due to an OCR error.

I was thinking a regex generator might be able to do it. So given an input of "crazy" it would generate this regex:

.*((crazy)|(.+razy)|(c.+azy)|cr.+zy)|(cra.+y)|(craz.+)).*

It would then return all matches for that word or variations of that word.

How to build the generator: I would probably split the search string/word up into an array of characters and build the regex expression doing a foreach the newly created array replacing the key value (the position of the letter in the string) with ".+".

Is this a good way to do fuzzy text search or is there a better way? What about some kind of string comparison that gives me a score based on how close it is? I'm trying to see if some badly converted OCR text contains a word in short.

link|improve this question

67% accept rate
1  
Your regex is wrong - replace + with . – Amarghosh Nov 12 '09 at 8:17
thanks for the tip, fixed the question with .+ – mikeytown2 Nov 12 '09 at 9:01
c.+azy will match calksjdazy - c followed by one or more characters followed by azy. For a single character, use c.azy – Amarghosh Nov 13 '09 at 4:17
feedback

3 Answers

up vote 3 down vote accepted

String distance functions are useless when you don't know what the right word is. I'd suggest pspell functions:

$p = pspell_new("en");
print_r(pspell_suggest($p, "crazzy"));

http://www.php.net/manual/en/function.pspell-suggest.php

link|improve this answer
Ah, it shows that I'm a PHP novice: I never heard of that method! Excellent suggestion, this should be voted up. +1 – Bart Kiers Nov 12 '09 at 9:11
feedback

Levenshtein is one example of a String Edit-distance. There are different metrics for different purposes. Familiarize yourself with them and find the one that works for you.

link|improve this answer
feedback
echo generateRegex("crazy");
function generateRegex($word)
{
  $len = strlen($word);
  $regex = "\b((".$word.")";
  for($i = 0; $i < $len; $i++)
  {
    $temp = $word;
    $temp[i] = '.';
    $regex .= "|(".$temp.")";
  }
  $regex = $regex.")\b";
  return $regex;
}
link|improve this answer
OP asked for a PHP-based solution. – Ben Dunlap Nov 12 '09 at 19:13
Agreed. But how hard it is to translate this? – Amarghosh Nov 13 '09 at 4:17
translated to php - click on the viewsource link in the diff to see java version. – Amarghosh Nov 13 '09 at 6:24
feedback

Your Answer

 
or
required, but never shown

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