Soundex - Online Linux Manual PageSection : 3
Updated : 2022-01-21
Source : perl v5.34.0
Note : User Contributed Perl Documentation

NAMEText::Soundex − Implementation of the soundex algorithm.

SYNOPSIS​ use Text::Soundex; ​ ​ # Original algorithm. ​ $code = soundex($name); # Get the soundex code for a name. ​ @codes = soundex(@names); # Get the list of codes for a list of names. ​ ​ # American Soundex variant (NARA) − Used for US census data. ​ $code = soundex_nara($name); # Get the soundex code for a name. ​ @codes = soundex_nara(@names); # Get the list of codes for a list of names. ​ ​ # Redefine the value that soundex() will return if the input string ​ # contains no identifiable sounds within it. ​ $Text::Soundex::nocode = 'Z000';

DESCRIPTIONSoundex is a phonetic algorithm for indexing names by sound, as pronounced in English. The goal is for names with the same pronunciation to be encoded to the same representation so that they can be matched despite minor differences in spelling. Soundex is the most widely known of all phonetic algorithms and is often used (incorrectly) as a synonym for phonetic algorithm. Improvements to Soundex are the basis for many modern phonetic algorithms. (Wikipedia, 2007) This module implements the original soundex algorithm developed by Robert Russell and Margaret Odell, patented in 1918 and 1922, as well as a variation called American Soundex used for US census data, and current maintained by the National Archives and Records Administration (NARA). The soundex algorithm may be recognized from Donald Knuth's ​The Art of Computer Programming. The algorithm described by Knuth is the NARA algorithm. The value returned for strings which have no soundex encoding is defined using $Text::Soundex::nocode. The default value is undef, however values such as 'Z000' are commonly used alternatives. For backward compatibility with older versions of this module the ​$Text::Soundex::nocode is exported into the caller's namespace as ​$soundex_nocode. In scalar context, soundex() returns the soundex code of its first argument. In list context, a list is returned in which each element is the soundex code for the corresponding argument passed to soundex(). For example, the following code assigns @codes the value ('M200', 'S320'): ​ @codes = soundex qw(Mike Stok); To use Text::Soundex to generate codes that can be used to search one of the publically available US Censuses, a variant of the soundex algorithm must be used: ​ use Text::Soundex; ​ $code = soundex_nara($name); An example of where these algorithm differ follows: ​ use Text::Soundex; ​ print soundex("Ashcraft"), "\n"; # prints: A226 ​ print soundex_nara("Ashcraft"), "\n"; # prints: A261

EXAMPLESDonald Knuth's examples of names and the soundex codes they map to are listed below: ​ Euler, Ellery −> E460 ​ Gauss, Ghosh −> G200 ​ Hilbert, Heilbronn −> H416 ​ Knuth, Kant −> K530 ​ Lloyd, Ladd −> L300 ​ Lukasiewicz, Lissajous −> L222 so: ​ $code = soundex 'Knuth'; # $code contains 'K530' ​ @list = soundex qw(Lloyd Gauss); # @list contains 'L300', 'G200'

LIMITATIONSAs the soundex algorithm was originally used a long time ago in the US it considers only the English alphabet and pronunciation. In particular, non-ASCII characters will be ignored. The recommended method of dealing with characters that have accents, or other unicode characters, is to use the Text::Unidecode module available from CPAN. Either use the module explicitly: ​ use Text::Soundex; ​ use Text::Unidecode; ​ ​ print soundex(unidecode("Fran\xE7ais")), "\n"; # Prints "F652\n" Or use the convenient wrapper routine: ​ use Text::Soundex 'soundex_unicode'; ​ ​ print soundex_unicode("Fran\xE7ais"), "\n"; # Prints "F652\n" Since the soundex algorithm maps a large space (strings of arbitrary length) onto a small space (single letter plus 3 digits) no inference can be made about the similarity of two strings which end up with the same soundex code. For example, both Hilbert and Heilbronn end up with a soundex code of H416.

COPYRIGHT AND LICENSEThis software is copyright (c) 1998−2003 by Mark Mielke. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

MAINTAINERThis module is currently maintain by Mark Mielke (mark@mielke.cc).

HISTORYVersion 3 is a significant update to provide support for versions of Perl later than Perl 5.004. Specifically, the XS version of the ​soundex() subroutine understands strings that are encoded using UTF−8 (unicode strings). Version 2 of this module was a re-write by Mark Mielke (mark@mielke.cc) to improve the speed of the subroutines. The XS version of the soundex() subroutine was introduced in 2.00. Version 1 of this module was written by Mike Stok (mike@stok.co.uk) and was included into the Perl core library set. Dave Carlsen (dcarlsen@csranet.com) made the request for the NARA algorithm to be included. The NARA soundex page can be viewed at: ​http://www.archives.gov/research/census/soundex.html Ian Phillips (ian@pipex.net) and Rich Pinder (rpinder@hsc.usc.edu) supplied ideas and spotted mistakes for v1.x.
0
Johanes Gumabo
Data Size   :   16,950 byte
man-Text::Soundex.3pmBuild   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   2 / 201,005
Visitor ID   :     :  
Visitor IP   :   18.117.94.221   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (parse_manual_page_|249|Text::Soundex.3pm|36/37|el══─{─══.|.el══─{─══. ds -- \|\(em\| )         (htmlprn|149|Text::Soundex.3pm|36/37|.el══─{─══. ds --  —  |.el══─{─══. ds -- \|\(em\| )         (parse_manual_page_|249|Text::Soundex.3pm|43|br══─}─══|'br══─}─══ )         (htmlprn|149|Text::Soundex.3pm|43|'br══─}─══ |'br══─}─══ )