Has anyone attempted to create a function that will show how closely two strings match? In particular, if sWord1 = "Drs Vision Center" and sWord2 = "Doctors Vision Center", I want to be able to say that the two strings match, although not 100%. They differ because of the Drs != Doctors, but really it is the same. I thought about doing a replace function that would substitute Drs for Doctors and then I would get a 100% match. But then the equation gets really muddy when I compare two strings such as "FL Pest Control Co, Inc" to "Florida Pest Control Company, Inc."
I appreciate any guidance with this. Thank you.
I appreciate any guidance with this. Thank you.