self << other -> self
[permalink][rdoc][edit]concat(other) -> self
-
self に文字列 other を破壊的に連結します。 other が 整数である場合は other.chr(self.encoding) 相当の文字を末尾に追加します。
self を返します。
- [PARAM] other:
- 文字列もしくは 0 以上の整数
str = "string" str.concat "XXX" p str # => "stringXXX" str << "YYY" p str # => "stringXXXYYY" str << 65 # 文字AのASCIIコード p str # => "stringXXXYYYA"
concat(*arguments) -> self
[permalink][rdoc][edit]-
self に複数の文字列を破壊的に連結します。
引数の値が整数である場合は Integer#chr の結果に相当する文字を末尾に追加します。追加する文字のエンコーディングは self.encoding です。
self を返します。
- [PARAM] arguments:
- 複数の文字列もしくは 0 以上の整数
str = "foo" str.concat p str # => "foo" str = "foo" str.concat "bar", "baz" p str # => "foobarbaz" str = "foo" str.concat("!", 33, 33) p str # => "foo!!!"