Hello,

I'm reading from a ini-file which lessons and units are available. This information I store in the hash %available_data. The relevant information for me are the keys. The values I set to undef because I'm not interested in.

The following code snippet shows an example how the hash %available_data could look like.

my $unit; my $lesson; $available_data{'02'}{'03'} = undef; $available_data{'02'}{'05'} = undef; $available_data{'02'}{'11'} = undef; $available_data{'05'}{'02'} = undef; $available_data{'05'}{'03'} = undef; $available_data{'07'}{'01'} = undef; $available_data{'07'}{'04'} = undef; $available_data{'07'}{'07'} = undef; $available_data{'07'}{'08'} = undef; foreach $unit (sort keys %available_data) { print "Unit " . $unit . " consists of lessons: "; foreach $lesson (sort keys %{$available_data{$unit}}) { print $lesson . " "; } print "\n"; }
The printed result looks like this:
Unit 02 consists of lessons: 03 05 11 Unit 05 consists of lessons: 02 03 Unit 07 consists of lessons: 01 04 07 08

As you can see I can easily print out which units and lessons are available.

But now I have the following problem: The program is in a specific lesson defined by $unit and $lesson. How do I come to the next lesson.

Examples:
Unit 2, Lesson 11 --> Unit 5, Lesson 2
Unit 5, Lesson 2 --> Unit 5, Lesson 3
Unit 5, Lesson 3 --> Unit 7, Lesson 1

Sorry for this newbie question. But I don't get it.

Thanks for your help

Dirk

In reply to Navigating in hash of hash by Dirk80

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.