capitalize!(*options) -> self | nil
[permalink][rdoc]文字列先頭の文字を大文字に、残りを小文字に破壊的に変更します。
str = "foobar"
str.capitalize!
p str # => "Foobar"
str = "fooBAR"
str.capitalize!
p str # => "Foobar"
[SEE_ALSO] String#capitalize, String#upcase!, String#downcase!, String#swapcase!