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

I am using the Java Inflector library to convert singular forms to plurals, example : 2 boat => 2 boats. However, it fails when the inputs are already plural. 1 boats => boats, butterflies => butterflieses

Is there any other Java utility that - 1. Converts plurals to singular when necessary, example : 1 boat => boat 2. Retains plural as it is, if the plural form is required.

Thanks!

share|improve this question
what does inflector return if you pass in some non-nouns such as "in", "and", "enjoy"? – nanshi Dec 6 '12 at 0:49

1 Answer

You know, you can make a simulation, first avoid to convert verbs that are already in plural, how? take the verb and convert it to singular, then convert it in plural and check if the result string is the same than the string that is in the input, if not, thats ok, know you know that is not in plural.

share|improve this answer
This may fail if u pass in a word like "in", "and", since i guess inflector will also return the same word..correct me if i am wrong. – nanshi Dec 6 '12 at 0:48

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.