I am currently using capitalize!:
user_input.capitalize!
But, if the input is capitalized, it returns a nil.
I know I can use the method without !, but it will make a copy of the object and pass that instead of changing the object.
user_input.capitalize
How can I use !, but have it work for all cases?
I tried to downcase everything, then capitalize but the same problem exists in some cases.
What is the best way to capitalize all entries?
This is the context:
The user inputs "works", "Works", "WORKS", or "WoRkS"
case 1) user_input = "works"
case 2) user_input = "Works"
case 3) user_input = "WORKS"
case 4) user_input = "WoRkS"
user_input.capitalize! (case 1,3,4 = "Works"; case 2 = nil)

1.9.3p194 :001 > "WORKS".capitalize! => "Works"– Andbdrew Jan 2 at 21:30!for "all cases", the!is part of the method name--you don't "use!on a method". – Dave Newton Jan 2 at 21:36nilif the string is already capitalized). – Telemachus Jan 2 at 21:38