3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

変数展開

Last updated at Posted at 2019-02-16

#変数展開
変数展開とは...
変数を代入している値に置き換えて、文字列の中に含めること

name = '佐藤'
puts "こんにちは#{name}さん"

ダブルクォーテーション「""」じゃないと変数展開できないので注意!

数値と文字列を足し算で連結することはできないが、
変数展開を使えば、数値の入った変数と文字列を連結することができる。

3
1
2

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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?