I have read this post and saw that there are various ways to create a dynamic naming of arrays in perl.
http://en.allexperts.com/q/Perl-CGI-1045/dynamic-naming-array-1.htm
as per the link, the code will create dynamic arrays like these:
@yearsSoFar2004,
@yearsSoFar2005,
@yearsSoFar2006 etc.
My requirement is as follows. I want to create a dynamic array like this:
my @a0=();
my @a1=();
my @a2=();
my @a3=();
I currently have it static in my code but i want to make it dynamic. Here is the static code below. Please help me guys. I am a newbie to PERL
my @a=();
my @b=();
my @c=();
my @d=();