Quick question.
How can I test a word to see if it is singular or plural?
I'd really like:
test_singularity('word') # => true
test_singularity('words') # => false
I bet rails is capable!
Thanks.
|
Quick question. How can I test a word to see if it is singular or plural? I'd really like:
I bet rails is capable! Thanks.
| |||
|
feedback
|
|
Well in rails, you can do a But I would think due to the nature of language itself, this might need some backup to do be completely accurate. You could do something like this
But to see how accurate, I ran a quick set of words.
I was a little surprised actually, since 'dress' does get pluralized properly, but when it goes through the #singularize it runs into a bit of a snag.
| ||||
feedback
|
|
Most of the times i never test for singularity or plural, i just convert it to the singular or plural form i require. This always works, like this
Working further on this, a working function is easy to supply:
which gives the following output:
But like i said at the top: i actually almost never test whether a word is singular or plural, but convert it immediately to the wanted case. | |||||
feedback
|
|
Neither ruby nor rails come with a specific method for testing for "plurality" on words. As nowk said, the most you can do is implement them yourself, comparing with If you need more precision, you will need to use the Ruby Linguistics gem, which can deal with dress and dresses properly (but it's heavier). | |||
feedback
|