http://qs321.pair.com?node_id=427978


in reply to what does $hash{$k} .= "{$v}"

It's an efficient way of writing:
$hash{$k} = $hash{$k} . "{$v}";
See man perlop.