in reply to Re^2: Hash key/value
in thread Hash key/value

FireBird34: Your subsequent post indicates your problem is resolved, but just for the record:
>perl -wMstrict -le "my $key = \"that's it!\"; my $value = \"foo\"; my %something; $something{$key} = $value; print $something{$key}; use Data::Dumper; print Dumper \%something; " foo $VAR1 = { 'that\'s it!' => 'foo' };