in reply to Re: html to hash table
in thread html to hash table

Thank you it works, one more question if I want to access 'Time' for 'CS 128 Section 01' class how would i do that?

Replies are listed 'Best First'.
Re^3: html to hash table
by duyet (Friar) on Oct 31, 2016 at 11:38 UTC
    print $data->{'CS 128 Section 01'}{Time}
    If you have more data you can loop thru it:
    foreach my $class ( keys %{ $data }) { print $data->{ $class }{Time} # do something else with other items ... }