in reply to Convert string to variable

I am no expert, but if you have a hash such as my %var_list = ... then you can get its contents one by one by spelling out the key in brackets and quotes. At least, this works on my computer. I use Tinyperl 5.008.

my $SOMETHING = $var_list{"date_out"};

or something like that.