|
NAMEText::DoubleMetaphone - Phonetic encoding of words.SYNOPSISuse Text::DoubleMetaphone qw( double_metaphone ); my($code1, $code2) = double_metaphone("Aubrey"); DESCRIPTIONThis module implements a "sounds like" algorithm developed by Lawrence Philips which he published in the June, 2000 issue of C/C++ Users Journal. Double Metaphone is an improved version of Philips' original Metaphone algorithm.In contrast to the Soundex and Metaphone algorithms, Double Metaphone will sometimes return two encodings for words that can be plausibly pronounced multiple ways. For additional details, see Philips' discussion of the algorithm at: http://www.cuj.com/articles/2000/0006/0006d/0006d.htm?topic=articles FUNCTIONS
AUTHORCopyright 2000, Maurice Aubrey <maurice@hevanet.com>. All rights reserved.This code is based heavily on the C++ implementation by Lawrence Philips, and incorporates several bug fixes courtesy of Kevin Atkinson <kevina@users.sourceforge.net>. This module is free software; you may redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOMan PagesText::Metaphone, Text::SoundexAdditional ReferencesPhilips, Lawrence. C/C++ Users Journal, June, 2000.Philips, Lawrence. Computer Language, Vol. 7, No. 12 (December), 1990. Kevin Atkinson (author of the Aspell spell checker) maintains a page dedicated to the Metaphone and Double Metaphone algorithms at <http://aspell.sourceforge.net/metaphone/>
Visit the GSP FreeBSD Man Page Interface. |