String Pluralizer
TextConvert English nouns between singular and plural forms, including irregular nouns, for dynamic labels and grammatically correct UI labels and output.
catcatsboxboxeschildchildrenpersonpeoplemousemicepartypartiesanalysisanalysesphenomenonphenomenamatrixmatricesbusbusheroheoeswifewivesRelated Tools
About String Pluralizer
English plurals are far more than adding an "s": city becomes cities, knife becomes knives, child becomes children, and sheep stays sheep. This tool converts English words to their correct plural form locally in your browser, applying the common spelling rules — the -y→-ies switch, -f/-fe→-ves endings, -es after sibilants, and an irregular dictionary that covers child, man, foot, mouse, and more — while leaving identical forms like sheep, fish, and series untouched. It works without uploading anything, which is convenient when you need consistent plurals for REST resource paths, database table names, or count-based UI copy. A practical caution: the tool assumes a singular input, so feeding it an already-plural word can double-pluralize; verify acronyms, proper nouns, and rare irregular words before trusting them in production naming.
How to Use
- Open the String Pluralizer tool
- Paste the text to process
- Adjust the output options as needed
- Click the Process button; results appear in real time
- Copy or export the result
Use Cases
- API fields — Turn user and category into users and categories for REST paths or collection fields.
- Table names — Convert singular model names to plural table names per ORM conventions for consistency.
- Dynamic copy — Show the right form like 1 item / 3 items based on a count in the UI.
- Code generation — Derive collection names automatically when scaffolding CRUD code, reducing typos.
- Learning aid — Quickly verify irregular plurals like mouse and analysis.
- Localize UI messages — Generate correct plural forms for notification strings to handle count-based copy in your app.
- Normalize taxonomy — Convert singular tag or category names to their plural form for consistent taxonomy labeling.
FAQ
Does it handle irregular plurals?
It includes a dictionary of common irregulars like child to children, man to men, foot to feet, but English has many; double-check rare words.
What about words with identical forms?
Words like sheep, fish, and series, which are the same in singular and plural, are kept unchanged rather than gaining an "s."
What if I enter a word that is already plural?
The tool assumes singular input and may double-pluralize an already-plural word, so enter the singular form.
Does it support other languages?
It targets English word-formation only. Languages without morphological plurals, like Chinese, are out of scope.
Why does a -y ending sometimes add s and sometimes become ies?
A consonant + y (city) becomes ies, while a vowel + y (day) just adds s; the tool decides by the preceding letter.
How are -f/-fe endings handled?
Common words like knife to knives and leaf to leaves swap the ending to -ves, but safe and roof simply add s; the tool follows common rules, so verify exceptions.