Tagged Questions

1
vote
2answers
78 views

PHP/MySQL: Highlight “SOUNDS LIKE” query results

Quick MYSQL/PHP question. I'm using a "not-so-strict" search query as a fallback if no results are found with a normal search query, to the tune of: foreach($find_array as $word) …
3
votes
1answer
32 views

Is there a “Sounds-Like” string matching algorithm implemented in Dutch?

I know about the Soundex and Double-Methaphone algorithms for "sounds-like" stringmatching in English. Where can I find a similar algorithm, or a port of one of the algorithms for …
1
vote
2answers
121 views

Soundex algorithm in Python (homework help request)

The US census bureau uses a special encoding called “soundex” to locate information about a person. The soundex is an encoding of surnames (last names) based on the way a surname s …
2
votes
3answers
106 views

Could use some help with this soundex coding.

The US census bureau uses a special encoding called “soundex” to locate information about a person. The soundex is an encoding of surnames (last names) based on the way a surname s …
3
votes
2answers
112 views

Enabling soundex/metaphone for non-English characters

Hi all, I've been studying soundex, metaphone and other string search techniques the past few days, and in my understanding both algorithms work well in handling non-English words …
2
votes
3answers
163 views

“sounds-like”, “did you mean THAT” functionality using full text search in MSSQL 2005

I have implemented full text search over MSSQL 2005 database using CONTAINSTABLE keyword. I was wondering is there a way to add a "sounds like" or google's "did you mean THAT" func …
0
votes
4answers
238 views

Soundex Algorithm implementation using C++

Put simply a Soundex Algorithm changes a series of characters into a code. Characters that produce the same Soundex code are said to sound the same. The code is 4 characters wide …
1
vote
2answers
181 views

How to check SOUNDEX in php when php SOUNDEX outputs only 3 digits

I am trying to do a comparison between company names using SOUNDEX, but the php call for soundex only outputs 3 digits so the comparisons aren't quite accurate. Is there a way to …
1
vote
6answers
411 views

Data structure for soundex algorithm?

Can anyone suggest me on what data structure to use for a soundex algorithm program? The language to be used is Java. If anybody has worked on this before in Java. The program shou …
0
votes
2answers
237 views

Double-metaphone errors

I'm using Lawrence Philips Double-Metaphone algorithm with great success, but I have found the odd "unexpected result" for some combinations. Does anyone else have additions or ch …
1
vote
3answers
604 views

SQL Server’s SoundEx function on non-Latin character sets?

Does SQL Server's (2000) Soundex function work on Asian character sets? I used it in a query and it appears to have not worked properly but I realize that it could be because I don …
1
vote
1answer
213 views

Is it possible to use Soundex (or other SQL functions) in LinqToSql?

Guess the title says it all. I'm refactoring some code currently implemented in stored procedures to use LinqToSql (for use in training). Is it possible to use SQL functions in a l …
4
votes
1answer
127 views

How to make an International Soundex?

E.g. the Soundex algorithm is optimized for English. Is there a more universal algorithm that would apply across large families of languages?
3
votes
4answers
1k views

Levenshtein distance based methods Vs Soundex

As per this comment in a related thread, I'd like to know why Levenshtein distance based methods are better than Soundex.