instance method String#prepend

prepend(other_str) -> String[permalink][rdoc][edit]

文字列 other_str を先頭に破壊的に追加します。

[PARAM] other_str:
追加したい文字列を指定します。


a = "world"
a.prepend("hello ") # => "hello world"
a                   # => "hello world"
prepend(*arguments) -> String[permalink][rdoc][edit]

複数の文字列を先頭に破壊的に追加します。

[PARAM] arguments:
追加したい文字列を指定します。


a = "!!!"
a.prepend # => "!!!"
a         # => "!!!"

a = "!!!"
a.prepend "hello ", "world" # => "hello world!!!"
a                           # => "hello world!!!"