まくまくRubyノート
文字列を逆順にする (reverse)
2011-12-05
s = 'ABCDE'
s.reverse!    # => 'EDCBA'

配列要素を逆順に並び替えるときも、reverse を使用することができます。

2011-12-05