in reply to new to perl, syntax question
The index expression of $array[ EXPR ] is evaluated in scalar context, and the an array in scalar context evaluates to the number of elements in the array.
my @folder = qw( a b c d e f ); my @name = qw( x y z ); my $var = $folder[@name]; # $var = 'd', since @name == 3.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: new to perl, syntax question
by tics (Initiate) on Feb 21, 2012 at 06:44 UTC |