Tagged Questions

Metaphone is an phonetic algorithm developed in the 1990s as an improvement over the Soundex algorithm for indexing words based on how they are pronounced in spoken English.

learn more… | top users | synonyms

5
votes
2answers
1k views

Enabling soundex/metaphone for non-English characters

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 transliterated to English. ...
3
votes
2answers
181 views

What are the practical usages of functions metaphone() and soundex() in PHP?

Metaphone and Soundex are phonetic algorithms for indexing strings by their English pronunciation. Have you ever used functions metaphone() or soundex() that are present in the standard PHP library? ...
2
votes
3answers
102 views

How to search for a part of a string in an array?

I want to search whether the complete string or a part of the string is a part of the array. How can this be achieved in PHP? Also, how can I use metaphone in it as well? Example: ...
2
votes
1answer
636 views

Test Suite for Double Metaphone?

I've translated Double-Metaphone into ActionScript3 and I want to test it (obviously) before I release the source to ... um ... the open. I'm looking for a long list of names with the primary and ...
1
vote
1answer
78 views

How to implement metaphone in Microsoft access?

I want to use metaphone algorithm for pattern matching in Microsoft Access. I found one code on http://www.snakelegs.org/2008/01/18/double-metaphone-visual-basic-implementation/ but it doesn't works, ...
0
votes
1answer
41 views

Metaphone 3 information

Does anyone know where code can be found for Metaphone 3 matching for T-SQL or at least something that describes in detail the difference between Double Metaphone and Metaphone 3? I have been working ...
0
votes
0answers
55 views

Comparing pronunciations of words in PHP with levenshtein and metaphone

To work out if two strings sound the same in PHP you could use metaphone() which returns a string based on the pronunciation of the word. If I wanted to allow more flexible comparisons, say for ...
0
votes
2answers
151 views

Retrieving words with 3 or less characters in MySQL

I have a table with a field that contains a bunch of neighborhood names. Some of these neighborhoods have names with 2 or more words. How can I get a list of words that are 3 or less characters and ...
0
votes
2answers
578 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 changes to the ...