Soundex function : Text « System Functions « Perl
- Perl
- System Functions
- Text
Soundex function
#!/usr/bin/perl
use warnings;
use strict;
use Text::Soundex;
while (<>) {
chomp; #remove trailing linefeed
s/\W/ /g; #zap punctuation, e.g. '.', '@'
print "'$_' => '@{[soundex(split)]}'\n";
}
Related examples in the same category