Hi I have a hash of hash containing class name, number of students enrolled and the names of student.
How do I print out this hash without repeating the second level keys.
Example: My data that I fill in my hash is Science Class, 3 students enrolled namely George,Lisa,Mathias and Math Class, 4 students enrolled Peter,George,Anna,Martin.
my %register=();
$register{$className}->{$count_students}=$student_name; # Fill the hash.
foreach my $key ( keys %register ){
print "$key: ";
foreach my $class ( keys %{ $register{$key} } ){
print "$class=$register{$key}->{$class}\n";
}
}
I get result like:
Science_class: 2=Lisa
1=George
3=Mathias
Math_class: 2=Anna
1=Martin
3=Peter
4=George
But I want my result as:
Science_class: 3 -> Lisa, George, Mathias
Math_class: 4 -> Anna, Martin, Peter, George
How do I correct my script? Help me out.
$count_studentsper class (ie. more than one science class)? – Jon Jul 12 '11 at 14:03