Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

compare two strings and calculate similarity between them 1

Status
Not open for further replies.

abdellatif99

Programmer
Jun 26, 2002
11
LY
compare two strings and calculate the degree of similarity between them.
 
Try the SOUNDEX() function.

?SOUNDEX('Dave')
?SOUNDEX('Davey')
?SOUNDEX('David')
?SOUNDEX('Davis')

Dave S.
 
You may want to also look at the DIFFERENCE() function.

Rick
 
You may want to look at a third party product PhDbase. It's a 'fuzzy' compare/locate among other things. The soundex function gives some bizzar returns (like the same score for different words). You can find a number of hits on the web for PhDbase.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top