Flowdock
capitalize!(*args) public

Modifies str by converting the first character to uppercase and the remainder to lowercase. Returns nil if no changes are made.

See String#downcase for meaning of options and use with different encodings.

a = "hello"
a.capitalize!   #=> "Hello"
a               #=> "Hello"
a.capitalize!   #=> nil
Show source
Register or log in to add new notes.