I\'m running Rails 2.3.2.
How do I convert \"Cool\" to \"cool\"? I know \"Cool\".downcase works, but is there a Ruby/Rails method
\"Cool\"
\"cool\"
\"Cool\".downcase
There is an inverse of capitalize called swapcase:
capitalize
swapcase
"Cool Cat".swapcase #=> "cOOL cAT"