Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-Text-Soundex | Distribution: SUSE Linux Framework One |
Version: 3.05 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: slfo.1.1.6 | Build date: Mon Aug 26 10:52:14 2024 |
Group: Development/Libraries/Perl | Build host: h01-ch4d |
Size: 50840 | Source RPM: perl-Text-Soundex-3.05-slfo.1.1.6.src.rpm |
Packager: https://www.suse.com/ | |
Url: http://search.cpan.org/dist/Text-Soundex/ | |
Summary: Implementation of the soundex algorithm |
Soundex 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
HPND
* Sat Nov 14 2015 coolo@suse.com - updated to 3.05 see /usr/share/doc/packages/perl-Text-Soundex/Changes * Mon Oct 19 2015 coolo@suse.com - set license to HPND * Fri Apr 17 2015 coolo@suse.com - updated to 3.04 see /usr/share/doc/packages/perl-Text-Soundex/Changes 3.04 Thu Feb 7 15:53:09 EST 2013 <rjbs@cpan.org> The module is going to be removed from the core distribution of perl, and will now warn (under warnings) if loaded from its installed-to-core location. * Sun May 15 2011 jw@novell.com - initial pull from CPAN with cpanspec_obs-0.7 * Sun May 15 2011 jw@novell.com - initial package 3.03 * created by cpanspec 1.78.04
/usr/lib/perl5/vendor_perl/5.38.2/x86_64-linux-thread-multi/Text /usr/lib/perl5/vendor_perl/5.38.2/x86_64-linux-thread-multi/Text/Soundex.pm /usr/lib/perl5/vendor_perl/5.38.2/x86_64-linux-thread-multi/auto/Text /usr/lib/perl5/vendor_perl/5.38.2/x86_64-linux-thread-multi/auto/Text/Soundex /usr/lib/perl5/vendor_perl/5.38.2/x86_64-linux-thread-multi/auto/Text/Soundex/Soundex.so /usr/share/doc/packages/perl-Text-Soundex /usr/share/doc/packages/perl-Text-Soundex/Changes /usr/share/doc/packages/perl-Text-Soundex/LICENSE /usr/share/doc/packages/perl-Text-Soundex/README /usr/share/man/man3/Text::Soundex.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Nov 9 00:14:35 2024