in reply to Looking for equivalent to LHS eval
If you really want symbolic references,
I'm curious to know why you want this.{ no strict qw/refs vars/; for my $key ( qw/list of keys/ ) { next if $key =~ /\W/ or $key =~ /^\d/; ${$key} = $hash{$key}; } }
After Compline,
Zaxo
|
---|