1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

appendメソッドで文字列の連結ができないとき

Last updated at Posted at 2024-02-18

初めに

RExの問題を解いていて、appendメソッドを使用して文字列を結合しようとする問題に出会ったので書いていきます。

問題


a = "今日も"
b = "最高の1日に。"

p a.append b # NoMethodError

解決方法

今回はString<<で解決しました。

a = "今日も"
b = "最高の1日に。"

p a << b # 今日も最高の1日に。

appendメソッドは、Arrayクラスのメソッドで配列に要素を追加するときに使用されるようです。

終わりに

今日はRExの1度解いた問題を繰り返し解いてみたら、点数が上がっていたので良かったです。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?