N Nav New member Sep 4, 2011 #1 i want to insert string as value in hash table in perl can you tell me how plzzz?
M martinthurn New member Sep 5, 2011 #2 my %hash; my $key = q{the_key}; my $value = q{string}; $hash{$key} = $value; If that doesn't help, you have to be MUCH more specific in your question
my %hash; my $key = q{the_key}; my $value = q{string}; $hash{$key} = $value; If that doesn't help, you have to be MUCH more specific in your question