I'm looking for effective algorithm to clean up my strings. Have a huge set of material descriptions (VARCHAR(255) on MySQL) which needs to be cleaned up. Materials comes with misspelled words and abbreviations so cleaning is basically replacing words to correct ones. Words map is over 300 rows for now, but may be growing.

Few problems:

  1. Let's have word1 should be replaced to word1 word2. Then if I already have correct description like blah word1 word2 it will be replaced to blah word1 word1 word2.
  2. Some search strings, which needs to be replaced, can consist few words. Also there could be search string which is beginning of another search string. For example it is possible to have cotton and cotton mix as words which needs to be replaced.
  3. All separators also needs to be saved.

What I'm planning to do now:

Search through whole string for word and check if it's position is not the same like replacement text, if not - replace with replacement. This is how I avoid 1st problem mentioned above. Search for next position of same word. If not found - check for next item in a map. Repeat this with every of 300 rows from map. After that go with next description. This looks very resources consuming while I'm planning to run script on a cron.

I'm working with PHP and MySQL but any ideas how to optimize this are welcome.

link|improve this question

50% accept rate
If you're going to handle this from cron, may consider just using PHP to code out your regex replacements against your query set and save the changes back with an update. – William Stearns Nov 21 '11 at 16:43
I'm going to do this way, but I'm asking HOW to replace text :-) – Pawka Nov 22 '11 at 8:45
regex is your friend php.net/manual/en/function.preg-replace.php – William Stearns Nov 22 '11 at 14:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.