let's say I have

@someting = qw/1 2 3 4/;

@something2 = qw/110 11 12/;

@something3 = qw/20 30 40 50/;

and I get the name of array from regular expression match something like this from some other file

   $_ =~ /^(\S+) \s\s$/;

so, now $1 is either something or something2 or something3,

and if I wanted to do

something like

@bigarray{ @something } = split

how can use $1 to put it inside?

I was thinking something like

@bigarray{ @($1) } = split ??
but doesn't work..
can someone advice?

thanks.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to