Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Stringクラス > prepend
prepend(other_str) -> String
文字列 other_str を先頭に破壊的に追加します。
例:
a = "world" a.prepend("hello ") # => "hello world" a # => "hello world"