Basicaly, you can't go it that way. Using the following line

    $result{$c1}{$c2}{$c3}{$c4}{$c5} .= $desc;
you always create a 5 level hash, and that's not what you want.

Also, your output example is not consistent. Basically you have some cases where you attach a leaf to a '0' on the hash table and in some other cases you attach it to a full number. Or do you want to have the '0' just on cases where the element has childs?

Now, how to help you to solve your problem.... first, I would use pattern matching instead of packs. second, you can't know if an element has more child or not before processing the remaining index. So, the structure you are using with in some cases a '0' and in some other without the '0' is complicated.

I hope this helps you to think a little more on your problem.

Alberto Simões

Python's syntax succeeds in combining the mistakes of Lisp and Fortran. I do not contrue that as progress.

-- Larry Wall

In reply to Re: Generation of a Hash of Hashes by ambs
in thread Generation of a Hash of Hashes by Miguel

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.