in reply to Dereference string in foreach
Turn on strict and warnings and you'll see why.
use warnings; use strict; my $sref = \$string; foreach $string ( @array_of_strings ) { print $$sref; } $ perl sref_o.pl Global symbol "$string" requires explicit package name at sref_o.pl li +ne 4. Global symbol "$string" requires explicit package name at sref_o.pl li +ne 5. Global symbol "@array_of_strings" requires explicit package name at sr +ef_o.pl line 5. Execution of sref_o.pl aborted due to compilation errors.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Dereference string in foreach
by Anonymous Monk on Feb 13, 2013 at 21:06 UTC | |
by Anonymous Monk on Feb 13, 2013 at 21:32 UTC | |
by blue_cowdawg (Monsignor) on Feb 14, 2013 at 15:30 UTC | |
by LanX (Saint) on Feb 14, 2013 at 22:12 UTC | |
by Anonymous Monk on Feb 14, 2013 at 19:29 UTC | |
by Anonymous Monk on Feb 14, 2013 at 21:34 UTC |