instance method String#reverse!

reverse! -> self[permalink][rdoc][edit]

文字列を文字単位で左右逆転します。



str = "foobar"
str.reverse!
p str   # => "raboof"