Here is a little dumper I wrote some time ago:
my %h2 = ( 'AAA' => 'aaa', 'BBB' => 'bbb', 'CCC' => { 'A1' => 'a1', 'B1' => 'b1', 'C1' => { 'A2' => 'a2', 'B2' => 'b2', 'C2' => 'c2END', }, }, 'DDD' => 'ddd', ); sub ddump { my $ref = shift; my $deep = shift||1; for my $k ( sort keys %$ref ) { if ( ref $ref->{$k} ) { print "\t" x $deep."$k =>\n"; ddump( $ref->{$k}, $deep+1 ); } else { print "\t" x ($deep)."$k => $ref->{$k}\n"; } } } ddump( \%h2 );
Then I found a column by merlyn, which gave me the idea of dumping into a CGI table structure. The result:
use CGI qw /:all -nph/; #on Win32 $|++; sub nest { my $it = shift; ref $it ? complex_table($it) : $it } sub complex_table { my $hr = shift; # could test here to ensure that $hr is indeed a hash ref. table( { -border => 2, -bordercolor => 'green', -cellspacing => '0 +', }, map Tr( td( {-valign=>'top'}, $_ ), td( nest( $hr->{$_} ))), s +ort keys %$hr ); } my %h1 = (); # feed your HoH here print start_html, complex_table( \%h1 ), end_html;
which produces a dump like this:
AAA aaa
BBB bbb
CCC
A1 a1
B1 b1
C1
A2 a2
B2 b2
C2 c2END
DDD ddd

In reply to Re: How can I visualize my complex data structure? by Discipulus
in thread How can I visualize my complex data structure? by planetscape

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.