singularize ( word -- singular )
English natural language transformations

Prev:singular? ( word -- ? )
Next:a/an ( word -- article )


Vocabulary
english

Inputs
worda string


Outputs
singulara string


Word description
Determine the singular form of the input English word. If the input is already singular, it is returned unchanged.

Notes
This word attempts to preserve the letter case style of the input.

Examples
USING: english io ; "CATS" singularize print
CAT

USING: english io ; "Octopi" singularize print
Octopus


See also
pluralize, ?pluralize, plural?, count-of-things, singular?

Definition