in reply to How do I use a hash to store my data
%hash_of_hash = (); $key = 'S'; $new_data = {}; $new_data{'1'} = 'ASB'; $new_data{'2'} = '#$'; $new_data{'3'} = '$'; $hash_of_hash{$key} = $new_data; # repeat for other data.... [download]