/usr/share/perl5/Lingua/EN/Syllable.pm is in liblingua-en-syllable-perl 0.300-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | package Lingua::EN::Syllable;
$Lingua::EN::Syllable::VERSION = '0.30';
# ABSTRACT: count the number of syllables in English words
use 5.006;
use strict;
use warnings;
# note that this is not infallible. it does fail for some percentage of
# words (10% seems a good guess)... so it's useful for approximation, but
# don't use this for running your nuclear reactor...
require Exporter;
our @ISA = qw/ Exporter /;
our @EXPORT = qw/ syllable /;
our @EXPORT_OK = qw/ @AddSyl @SubSyl /;
our @AddSyl;
our @SubSyl;
# basic algortithm:
# each vowel-group indicates a syllable, except for:
# final (silent) e
# 'ia' ind two syl
# @AddSyl and @SubSyl list regexps to massage the basic count.
# Each match from @AddSyl adds 1 to the basic count, each @SubSyl match -1
# Keep in mind that when the regexps are checked, any final 'e' will have
# been removed, and all '\'' will have been removed.
@SubSyl = (
'cial',
'tia',
'cius',
'cious',
'giu', # belgium!
'ion',
'iou',
'sia$',
'.ely$', # absolutely! (but not ely!)
'[^td]ed$', # accused is 2, but executed is 4
);
@AddSyl = (
'ia',
'riet',
'dien',
'iu',
'io',
'ii',
'microor',
'[aeiouym]bl$', # -Vble, plus -mble
'[aeiou]{3}', # agreeable
'^mc',
'ism$', # -ism
'isms$', # -isms
'([^aeiouy])\1l$', # middle twiddle battle bottle, etc.
'[^l]lien', # alien, salient [1]
'^coa[dglx].', # [2]
'[^gq]ua[^auieo]', # i think this fixes more than it breaks
'dnt$', # couldn't
);
# (comments refer to titan's /usr/dict/words)
# [1] alien, salient, but not lien or ebbullient...
# (those are the only 2 exceptions i found, there may be others)
# [2] exception for 7 words:
# coadjutor coagulable coagulate coalesce coalescent coalition coaxial
#----------------------------------------
sub syllable {
my $word = shift;
my(@scrugg,$syl);
$word =~ tr/A-Z/a-z/;
return 2 if $word eq 'w';
return 1 if length($word) == 1;
$word =~ s/\'//g; # fold contractions. not very effective.
$word =~ s/e$//;
@scrugg = split(/[^aeiouy]+/, $word); # '-' should perhaps be added?
shift(@scrugg) unless ($scrugg[0]);
$syl = 0;
# special cases
foreach (@SubSyl) {
$syl-- if $word=~/$_/;
}
foreach (@AddSyl) {
$syl++ if $word=~/$_/;
}
# count vowel groupings
$syl += scalar(@scrugg);
$syl=1 if $syl==0; # got no vowels? ("the", "crwth")
return $syl;
}
# syllable
1;
__END__
=head1 NAME
Lingua::EN::Syllable - count the number of syllables in English words
=head1 SYNOPSIS
use Lingua::EN::Syllable;
$count = syllable('supercalifragilisticexpialidocious'); # 14
=head1 DESCRIPTION
Lingua::EN::Syllable::syllable() estimates the number of syllables in
the word passed to it.
Note that it isn't entirely accurate... it fails (by one syllable) for
about 10-15% of my /usr/dict/words. The only way to get a 100% accurate
count is to do a dictionary lookup, so this is a small and fast alternative
where more-or-less accurate results will suffice, such as estimating the
reading level of a document.
I welcome pointers to more accurate algorithms, since this one is
pretty quick-and-dirty. This was designed for English (well, American
at least) words, but sometimes guesses well for other languages.
=head1 KNOWN LIMITATIONS
Accuracy for words with non-alpha characters is somewhat undefined.
In general, punctuation characters, et al, should be trimmed off before
handing the word to syllable(), and hyphenated compounds should be broken
into their separate parts.
Syllables for all-digit words (eg, "1998"; some call them "numbers") are
often counted as the number of digits. A cooler solution would be converting
"1998" to "nineteen eighty eight" (or "one thousand nine hundred eighty
eight", or...), but that is left as an exercise for the reader.
Contractions are not well supported.
Compound words (like "lifeboat"), where the first word ends in a silent 'e'
are counted with an extra syllable.
=head1 SEE ALSO
L<Lingua::Phonology> - a framework of classes that provide
"an object model for lingistic phonology and sound change".
That includes syllables, and it looks like you can use it to
get syllables for words, but from a quick skim of the doc I
can't see exactly how.
L<Text::Info> - a new module (as of late 2015) that provides
information about text in Germanic languages,
including syllable count.
=head1 REPOSITORY
L<https://github.com/neilb/Lingua-EN-Syllable>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 1999 by Greg Fast E<lt>gdf@imsa.eduE<gt>
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 AUTHOR
Greg Fast (gdf@imsa.edu)
=cut
|