小文字に変換して文字列を生成
Perlのlc関数を使用して、文字列を小文字に変換して出力しました。
#!/opt/local/bin/perl
use strict;
use warnings;
print "Content-type: text/plan; charset=utf-8\n\n";
my @array = ("A".."Z");
print lc "@array";
exit;
サンプルコードです。小文字に変換して文字列を出力します。
a b c d e f g h i j k l m n o p q r s t u v w x y z
出力結果です。小文字に変換して文字列を出力しました。