replace(other) -> String
[permalink][rdoc][edit]-
self の内容を other の内容で置き換えます。
str = "foo" str.replace "bar" p str # => "bar"
replace(other) -> String
[permalink][rdoc][edit]self の内容を other の内容で置き換えます。
str = "foo"
str.replace "bar"
p str # => "bar"