in reply to Re: Multidimentional array help
in thread Multidimentional array help

Thanks for the advice. One last thing, if I have a variable called $ordtype with a value = 'SEASONAL', how can I substitute this variable so I don't have to hard-code the string?

Replies are listed 'Best First'.
Re^3: Multidimentional array help
by GrandFather (Saint) on May 29, 2007 at 22:55 UTC
    ... my $ordtype = 'SEASONAL'; my @aoa = map {[$_, qw(US M10 WEDNESDAY), $ordtype]} @dlr_loc; ...

    DWIM is Perl's answer to Gödel