Top > Ruby [2.2.2] > << , + , concat


String# << , + , concat

p "acha" << "porute"                               # "achaporute"
p "porute" + "piipo"                               # "porutepiipo"
p "acha".concat "-" << "porute" << "-" + "piipo"   # "acha-porute-piipo"

本チャンのRubyのお仕事で「concat」は使うのかはわかりませんが、私は「+」しか使ったことがありません。。。



Copyright © 2015 AchaPorutePiipo All Rights Reserved.