I'm running a fairly simple script which tries to match strings from a csv file with potential matches in a mysql table (collation: ut8_general_ci). For each row in the csv file, I pull out the string (haystack) I want, which looks something like this:

"Full Cmte. Member City of Rutland Rutland VT"

For each string, I pull the list of matches from my db, and cycle through them until stristr finds a match. (I'm using stristr instead of regex because it's simpler and (I think?) quicker.) Some of the matching strings don't make grammatic/syntactical sense because they're constructed as aliases particular to this data set. One of them is "City of Rutland Rutland VT" (an alias for "City of Rutland (VT)"), which should, but doesn't, match the string above. For more than 90% of these matches, I don't have any problems. However, certain text matching doesn't seem to work.

Here are a list of those that fail to produce a match:

Haystack => Needle

  • "Full Cmte. Member City of Ocala Ocala FL" => "City of Ocala Ocala FL"
  • "Full Board Member Water and Sanitation District Anthony NM" => "Water and Sanitation District Anthony"
  • "Energy Clean Air & Climate Change Subcmte Member Consol Inc." => "Consol Inc."
  • "Full Council Member; Sr. VP Integrated Services Burke Inc. Cincinnati OH" => "Burke Inc."
  • "City of San Antonio TX" => "City of San Antonio TX"
  • "Full Cmte member United National Indian Tribal Youth Inc. (UNITY)" => "United National Indian Tribal Youth Inc."
  • "ECA&CC Sub. Member Cyprus Amax Minerals Inc." => "Cyprus Amax Minerals Inc."
  • "Silcon Valley Manufacturing Group" => "Silcon Valley Manufacturing Group"
  • "President Global Environmental Resources Inc. Washington DC" => "Global Environmental Resources Inc."
  • "Lancaster Laboratories Inc." => "Lancaster Laboratories Inc."

I'm not sure what to make of this, unless it's something very basic that I've totally missed. it seems that most of the errors have "inc." in the match, but not sure that's what's causing it.

Here's the code (though the answer below fit the bill):

$patterns = array();
$patterns[0] = '/\s+/';
$patterns[1] = '/&/';

$replacement = array();
$replacement[0] = ' ';
$replacement[1] = 'and';

$name = trim(preg_replace($patterns,$replacement,$name));

if(stristr($name,trim(preg_replace($patterns,$replacement,$org->org_name)))) {
// code here
}

It's not terribly graceful right now and I would appreciate any additional insight as to how to normalize strings for matching.

link|improve this question

78% accept rate
Could we see your code? – Ben Mosher Apr 4 '11 at 22:03
Post some of your code please. – Khez Apr 4 '11 at 22:03
stristr is faster indeed. – ITroubs Apr 4 '11 at 22:06
feedback

1 Answer

up vote 3 down vote accepted

My guess is that you view this through a browser, as html, so that (multiple) whitespace all condenses to a single space. This way it looks like it should match, but it doesn't.

A convenient way to prevent this, with little side effects, is to preprocess both the needle and the haystack:

$needle = trim(preg_replace('/\s+/',' ',$needle));
$haystack = trim(preg_replace('/\s+/',' ',$haystack));

The trim() is to solve issues caused by leading or trailing whitespace.

link|improve this answer
I'd additionally do further normalization such as lowercasing. – jmathai Apr 4 '11 at 22:32
Stripping diacritics (using iconv) is also a good one. Plus removing all but [a-z]. – mvds Apr 4 '11 at 22:37
feedback

Your Answer

 
or
required, but never shown

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