Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Stringクラス > replace

instance method String#replace

replace(other) -> String[permalink][rdoc]

self の内容を other の内容で置き換えます。



str = "foo"
str.replace "bar"
p str   # => "bar"