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:
- 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.
- 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.
- 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.