-
文字列の連結:
my $str1 = "Hello"; my $str2 = "World"; my $result = $str1 . " " . $str2; print $result; # 出力: Hello World
-
条件分岐:
my $num = 10; if ($num > 5) { print "Number is greater than 5"; } elsif ($num == 5) { print "Number is equal to 5"; } else { print "Number is less than 5"; }
-
ループ:
for my $i (1..5) { print $i . "\n"; }
-
ファイルの読み書き:
# ファイルの読み込み open(my $file, "<", "input.txt") or die "Cannot open file: $!"; while (my $line = <$file>) { chomp($line); print "Line: $line\n"; } close($file); # ファイルへの書き込み open($file, ">", "output.txt") or die "Cannot open file: $!"; print $file "This is a sample text."; close($file);
これらはPerlの基本的なコーディング例です。ブログ投稿の内容に合わせてカスタマイズすることができます。さらに詳しい情報はPerlの公式ドキュメントやオンラインのリソースを参照してください。