in reply to Re: Array loops and assignments
in thread Array loops and assignments

@Preceptor: Right. I want to store each element of the array in a variable of its own. So instead of assigning it to individual variables, I was hoping to build the variable and assign it on the fly. Makes sense? Perhaps,I'm overcomplicating this... Thanks!

Replies are listed 'Best First'.
Re^3: Array loops and assignments
by davido (Cardinal) on Jul 08, 2013 at 01:26 UTC

    Definitely overcomplicating it. Try this idiom: Think of a hash as a namespace, and its elements as variables within that namespace.

    my @array = qw( Larry Curly Moe ); my %stooges; @stooges{ @array } = ( 0 .. $#array ); print "$_ = $stooges{$_}\n" for keys %stooges;

    Or if you want numbers in the name:

    %stooges = map { 'var' . $_ , $array[$_] } 0 .. $#array;

    Dave

Re^3: Array loops and assignments
by roboticus (Chancellor) on Jul 07, 2013 at 20:24 UTC

    madbee:

    OK, I'll bite: Why? What are you going to be able to do with the variables that you can't already do with the array?

    ...roboticus

    When your only tool is a hammer, all problems look like your thumb.