OK, I have a pricing DCR, it had an ID and a price. Now they want MSRP and invoice price. Easy enough for the DCR. When I am running my TPL, I read the DCR into a hash and access it for the hash.
I know I could concatinate the values and and regex them apart, I prefer not.
I was trying something like this:
my %hash=();
$hash{"something"}=['1a','2b'];
(@array) = $hash{"something"};
foreach (@array) {print "$_\n";}
($a, $b) = $hash{"something"};
print"Got a $a b $b\n";
no luck. I usually get something like this:
Got a ARRAY(0x15e491c) b
What am I missing ?