「Ruby」concatメソッドで文字列を連結するサンプル
書式
文字列1 << 文字列2
文字列1.concat(文字列2)
使用例
#!/usr/bin/ruby # -*- coding: UTF-8 -*- strA = 'study' << ' ruby'<< ' in'<< ' arkgame' puts strA strA2 = "old " << ' home'<< ' go'<< ' quick' puts strA2 strB = 'A001'.concat(' B002').concat(' C003') puts strB strB2 = 'you'.concat(' weill').concat(' 3333') puts strB2
実行結果
>ruby test.rb
study ruby in arkgame
A001 B002 C003