# perl -le '$conf = "'a'..'z','A'..'Z'"; $x = eval "[$conf]"; print "@$x"'
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 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作者: yybmsrs 时间: 2009-12-15 10:50
my @conf = eval("'a'..'z','A'..'Z'");
my $rex = \@conf;