The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lingua::EN::PluralToSingular - change an English plural to a singular

SYNOPSIS

    use Lingua::EN::PluralToSingular 'to_singular';
    
    print to_singular ('knives');
    # "knife"
    
    use Lingua::EN::PluralToSingular 'is_plural';
    
    # Returns 1
    is_plural ('sheep');
    # Returns 0
    is_plural ('dog');
    # Returns 1
    is_plural ('dogs');
    # Returns 0
    is_plural ('cannabis');

    

VERSION

This documents Lingua::EN::PluralToSingular version 0.19 corresponding to git commit c5ae4a8f7f039ef7387de8d50ea096fd0379fe9c released on Sat Feb 11 15:19:45 2017 +0900.

DESCRIPTION

This converts words denoting a plural in the English language into words denoting a singular noun.

FUNCTIONS

to_singular

    my $singular = to_singular ($word);

Convert $word into its singular form. For example,

    to_singular ('cats')

returns 'cat'. If the word is unknown or does not seem to be plural, to_singular returns the word itself, so

    to_singular ('battlehorn');

returns 'battlehorn'.

is_plural

    if (is_plural ($word)) {
        print "There are too many $word here.\n";
    }
    else {
        print "There is a $word here.\n";
    }

Returns 1 if the word is a valid plural, 0 if not. It also returns 1 for ambiguous words like "sheep".

LIMITATIONS

Assumes the input is a noun

"to_singular" assumes its input is a noun. For example, "lives" may be the plural of "life", or the verb "live", as in "he lives". The routine assumes a noun and converts to "life".

Distinguishes lower and upper case

It does not deal with capitalized words. If the input word may be capitalized, or if its initial letter may be capitalized, the user must preprocess it to put it into the normal case. So, for example,

    to_singular ('FLIES');

returns 'FLIES' and

    to_singular ('Wolves');

returns 'Wolve'. Similarly,

    to_singular ('Charles');

returns 'Charles', but

    to_singular ('charles');

returns 'charle', since the exception only applies if the word is capitalized.

Does not handle pronouns

The module does not attempt to handle pronoun forms like "ourselves" or "themselves". These words are left unaltered.

STANDALONE SCRIPT

The script scripts/singular provides a quick way to get singular versions of nouns:

    singular cats dogs geese
    # Prints "cat dog goose".

BUGS

See also "LIMITATIONS" above.

This module is in development, and there are many exceptions which are not included yet. Also my criterion for including words is basically my own knowledge, so a lot of words I didn't recognize in the dictionary haven't been entered yet.

SEE ALSO

Lingua::EN::Inflect

Lingua::EN::Inflect by Damian Conway converts English singular nouns to plurals, but not vice-versa.

Lingua::EN::Inflect::Number

Lingua::EN::Inflect::Number is supposed to do the same thing as this module. However, as of the time of writing (version 1.12) it's actually based on the third-person verb handling of Lingua::EN::Inflect, in other words it takes a verb in the "he says" form and converts it into "say". Thus you get bugs like https://rt.cpan.org/Public/Bug/Display.html?id=64564 where the reporter demonstrates that 'to_S incorrectly renders the singular of "statuses" as "statuse."'

ACKNOWLEDGEMENTS

Thanks to Xan Charbonnet and H2CHANG for various additions and fixes. Lisa Hare contributed support for plurals ending in i as part of the 2016 Pull Request Challenge.

AUTHOR

Ben Bullock, <bkb@cpan.org>

COPYRIGHT & LICENCE

This package and associated files are copyright (C) 2011-2017 Ben Bullock.

You can use, copy, modify and redistribute this package and associated files under the Perl Artistic Licence or the GNU General Public Licence.