I would like to know if anyone know a good algorithm to match 2 string accepting minor differences such as:
First word is the first string to compare with the second string.
EX1: hellos - hello
EX2: Hello - hello
EX3: Helo - hello
EX4: ello - hello
EX5: I own iphone - i own a iphone
EX6: I beleive in god - i believe in god
The match algorithme what you are searching for is fuzzy math or aproximate match
You can try
http://elonen.iki.fi/code/misc-notes/appr-search-php/
I’m not associated with them nor did I test the code, but it might send you on the right track.