よく忘れるのでφ(..)メモメモ

文字列に乗算を行うと掛けた回数だけ文字が連結されます。

[sourcecode language="Ruby"]

coding: utf-8

s = "123" p s * 10

--- 実行結果 ruby -e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) sample2.rb "123123123123123123123123123123" [/sourcecode]

テストデータを作るときくらいしか利用しないけどとても便利なのよ。でも、よく忘れる…。