I am trying to do some thing like this:
my @Amode=('1','2','3');
my @Bmode=('1','2','3');
my @Cmode=('1','2','3');
my @Atemp=('1','2','3');
my @Btemp=('1','2','3');
my @Ctemp=('1','2','3');
my @mode=('A','B','C');
foreach (@mode) {
my $newmode = join("",$_,mode);
my $newtemp = join("",$_,temp);
}
I want to access the @Amode information through $newmode. Is this possible?