Hi Guys,
I have hash as given below.
%hash = (
key1 => '1',
key2 => '2',
key3 => '3',
key4 => '1',
key5 => '2',
key6 => '3',
);
i want to reorganise or print this hash as something like this ....
1 = key1 and key4
2 = key2 and key5
3 = key3 and key6
plz help me write this code.
Regards,
manu
Start Free Trial