指定した回数繰り返した文字列をPerl言語のx演算子で生成
Perl言語のx演算子を使用して、指定した回数の文字列を繰り返し出力しました。
#!/opt/local/bin/perl
use strict;
use warnings;
print "Content-type: text/plan; charset=utf-8\n\n";
print "hoge" x 10;
exit;
サンプルコードです。指定した文字に対して、x演算子を10
に指定して処理を実行しています。
hogehogehogehogehogehogehogehogehogehoge
出力結果です。10回繰り返した文字列が出力されました。