in reply to Re^2: html to hash table
in thread html to hash table
If you have more data you can loop thru it:print $data->{'CS 128 Section 01'}{Time}
foreach my $class ( keys %{ $data }) { print $data->{ $class }{Time} # do something else with other items ... }
|
|---|