define an array in perl
Hi
I am a newbie in perl. I have an array block_list :
push ( @block_list ,$word); # this word is read from a file.
$list_name = $block_list[$#block_list]; # i extract the last element
ie $word in this case
now i want to define an array with the name $list_name
like ,
my @"$list_name";
But this is giving me errors...
sorry for the stupid question,,,please help me out ,,,,
.
Relevant Pages
- Re: Learning Perl
... it should be an array, ... Then they'd be completely inaccessible to beginners. ... that should be my $var. ... so why is it redundant to point out that Perl is different from C here? ... (comp.lang.perl.misc) - Re: Which is faster - hash or array lookup
... I am suite sure that perl is not The Right Tool ... Each player has 5 pieces, and additionally there is a common ... whereas traversing an array looking for $n is slow). ... (comp.lang.perl.misc) - Re: perl vs Unix grep
... variable indexCount on array and reintialized evry time. ... Perl is langauge to make things work at any cost. ... > grep but the shell scripts that use ... As far as I can tell from reading and research ... (comp.lang.perl) - FAQ 4.42 How can I tell whether a certain element is contained in a list or array?
... comes with the standard Perl distribution. ... How can I tell whether a certain element is contained in a list or array? ... used a hash, not a list or array, to store your data. ... The perlfaq-workers, a group of volunteers, maintain the perlfaq. ... (comp.lang.perl.misc) - FAQ 4.42 How can I tell whether a certain element is contained in a list or array?
... comes with the standard Perl distribution. ... How can I tell whether a certain element is contained in a list or array? ... used a hash, not a list or array, to store your data. ... The perlfaq-workers, a group of volunteers, maintain the perlfaq. ... (comp.lang.perl.misc) |
|