in reply to Re: Trying to capture a value from a list of values
in thread Trying to capture a value from a list of values
my $lnxsrvrs = "@mylnxsrvrs";
This will assign to $lnxsrvrs the number of elements of the @mylnxsrvrs array.
Actually, it won't.
Since @mylnxsrvrs is in double quotes, the contents of the array are concatenated and stringified, and this string is assigned to $lnxsrvrs.
Consider:
my @array = ( qw/ un deux trois / ); my $count = "@array"; print $count;
Output:
un deux troisHow the OP (thinks they) got an output of 1 remains a mystery...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Trying to capture a value from a list of values
by Laurent_R (Canon) on Sep 02, 2015 at 13:31 UTC |