OKADA LABO

Swiftで文字列補完

var hoge = 38
print(hoge)

では38を出力。
数値38はint型。

これを文字列で出力する際、文字列補完を使うと便利。

\(<式>)

「 \ 」は、macでは、オプション + ¥ で打ち込める。

 

利用例

var myAge = 38
print("私の年齢は、\(myAge)歳です")

出力
私の年齢は、38歳です