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)?
|
You also have the System.Data.Entity.Design.PluralizationServices.PluralizationService. |
|||||||||||||||||
|
|
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. |
|||||||
|
|
I can do it for Esperanto, with no special cases!
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. |
|||||||||||
|
|
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:
invoked like so
I also had an overload that just added an "s" for the simple cases:
|
|||||||||||||||||
|
|
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:
It can also do way more than that. Read more about it on my blog. It's also available in NuGet. |
|||||||||||
|
|
Subsonic 3 has an Here's a snippet:
It accounts for some words not having plural equivalents, like the equipment example. As you can probably tell it does a simple Update: |
||||
|
|
|
I whipped one together based on the Rails pluralizer. You can see it here
|
|||
|
|
|
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):
The usage is as follows:
|
||||
|
|