in reply to Re: Associative arrayin thread Associative array
print $data_pair->{'key'}; print $data_pair->{'value'}; [download]
If you want to print the hash out for debugging purposes, use Data::Dumper.
If you want to access the keys/values in your program, use keys %{$data_pair} or values %{$data_pair} instead.