Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any algorithm in c# to singularize - pluralize a word (in english) or does exist a .net library to do this (may be also in different languages)?

share|improve this question

8 Answers

up vote 81 down vote accepted

You also have the System.Data.Entity.Design.PluralizationServices.PluralizationService.

share|improve this answer
10  
+1 For a solution in the framework. – jscharf Sep 19 '10 at 4:49
1  
Hmmm are you allow to redistribute, or just use, a Design DLL? I ask that because I know that the license for DevExpress prohibit redistributing any .design DLL. – Pierre-Alain Vigeant Mar 30 '11 at 19:39
19  
Opening the code with ILSpy shows a class called EnglishPluralizationService, which has lots of exceptional cases defined in and makes for interesting reading. I particularly like 'pneumonoultramicroscopicsilicovolcanoconiosis', which I find myself using all the time in my entity models... 8o) – MrKWatkins Jan 19 '12 at 17:41
1  
I can guess how that got added. A tester filed a bug on the dev saying it does not work for the said word. Dev fixed it. Both shared a laugh. – merlinbeard Mar 30 at 15:43

Most ORMs have a stab at it, although they generally aren't perfect. I know Castle has it's Inflector Class you can probably poke around. Doing it "perfectly" isn't an easy task though (English "rules" aren't really rules :)), so it depends if you are happy with a "reasonable guess" approach.

share|improve this answer
From your suggestion I searched for "Inflector" and found this andrewpeters.net/inflectornet that sould basically be the same of the Castle one – Ronnie Jan 24 '09 at 8:02
4  
Actually its not basically the same, its identical. – David Pfeffer Feb 17 '10 at 18:40

I can do it for Esperanto, with no special cases!

string plural(string noun) { return noun + "j"; }

For English, it would be useful to become familiar with the rules for Regular Plurals of Nouns, as well as Irregular Plurals of Nouns. There is a whole Wikipedia article on the English plural, which may have some helpful information too.

share|improve this answer
3  
You should make it throw if you pass in a verb or adverb! – Timwi Sep 17 '10 at 3:25
1  
This won't work for the accusative case… – Matt Jul 27 '12 at 1:37
@Matt: Of course this is appropriate for the nominative case; I trust that extending this method to the accusative case is straightforward for an astute reader. – Greg Hewgill Jul 27 '12 at 2:36

I cheated in Java - I wanted to be able to produce a correct string for "There were n something(s)", so I wrote the foll. little utility method:

static public String singularPlural(int val, String sng, String plu) {
    return (val+" "+(val==1 ? sng : plu)); 
    }

invoked like so

System.out.println("There were "+singularPlural(count,"something","somethings"));

I also had an overload that just added an "s" for the simple cases:

static public String singularPlural(int val, String sng) {
    return singularPlural(val,sng,(sng+"s"));
    }
share|improve this answer
This only covers a small sections of grammar though, it doesn't account for words like quizzes, parties, halves, mice, indices, etc. It's a good first stab, but there are a lot of other rules that should probably be processed first. – Jeremy S Jan 12 '10 at 19:23
2  
@Jeremy: Why not?: println("You have passed " + singularPlural(count,"quiz","quizzes") + " so far") – Software Monkey Jan 27 '10 at 2:22
I might be interpreting the question differently. I'm thinking the algorithm should be determining the plural form without any hint from the developer, while your method puts the onus of knowing what the plural form is on the developer. – Jeremy S Jan 27 '10 at 17:09
2  
@Jeremy: Hence the "I cheated..." lead in - doesn't seem to warrant a downvote. – Software Monkey Sep 17 '10 at 4:34
1  
Agreed. I also think the information provided was useful, which is why any downvote didn't come from me. I don't downvote in general, along the lines of the "one man's junk...". – Jeremy S Oct 20 '10 at 16:29

I've created a tiny library for this in .net (C#), called Pluralizer (unsurprisingly).

It's meant to work with full sentences, something like String.Format does.

It basically works like this:

var target = new Pluralizer();
var str = "There {is} {_} {person}.";

var single = target.Pluralize(str, 1);
Assert.AreEqual("There is 1 person.", single);

// Or use the singleton if you're feeling dirty:
var several = Pluralizer.Instance.Pluralize(str, 47);
Assert.AreEqual("There are 47 people.", several);

It can also do way more than that. Read more about it on my blog. It's also available in NuGet.

share|improve this answer
1  
Yup, that library only does single words, and only nouns (although Pluralizer uses that class internally). This library makes to make whole sentences easier to write. Have a look at my blog for more examples. Pluralizer.Instance.Pluralize("{She} {is} going to {her|their respective} {home}.", 5) – Jay Querido Mar 4 '11 at 2:28
No source code and package link is bad on the blog? – Shaun Wilson Jan 19 at 4:50
Shaun Wilson - My computer is currently in parts. I'm rushing to get it back up and will update within a day or two. In the mean time, nuget.org/packages?q=pluralizer – Jay Querido Jan 30 at 22:34

Subsonic 3 has an Inflector class which impressed me by turning Person into People. I peeked at the source and found it naturally cheats a little with a hardcoded list but that's really the only way of doing it in English and how humans do it - we remember the singular and plural of each word and don't just apply a rule. As there's not masculine/feminine(/neutral) to add to the mix it's a lot simpler.

Here's a snippet:

AddSingularRule("^(ox)en", "$1");
AddSingularRule("(vert|ind)ices$", "$1ex");
AddSingularRule("(matr)ices$", "$1ix");
AddSingularRule("(quiz)zes$", "$1");

AddIrregularRule("person", "people");
AddIrregularRule("man", "men");
AddIrregularRule("child", "children");
AddIrregularRule("sex", "sexes");
AddIrregularRule("tax", "taxes");
AddIrregularRule("move", "moves");

AddUnknownCountRule("equipment");

It accounts for some words not having plural equivalents, like the equipment example. As you can probably tell it does a simple Regex replace using $1.

Update:
It appears Subsonic's Inflector is infact the Castle ActiveRecord Inflector class!

share|improve this answer

I whipped one together based on the Rails pluralizer. You can see it here

output = Formatting.Pluralization(100, "sausage"); 
share|improve this answer

As the question was for C#, here is a nice variation on Software Monkey's solution (again a bit of a "cheat", but for me really the most practical and reusable way of doing this):

    public static string Pluralize(this string singularForm, int howMany)
    {
        return singularForm.Pluralize(howMany, singularForm + "s");
    }

    public static string Pluralize(this string singularForm, int howMany, string pluralForm)
    {
        return howMany == 1 ? singularForm : pluralForm;
    }

The usage is as follows:

"Item".Pluralize(1) = "Item"
"Item".Pluralize(2) = "Items"

"Person".Pluralize(1, "People") = "Person"
"Person".Pluralize(2, "People") = "People"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.