Generaly you would want your data definition, and your data separate. You would then apply that definition to your data. I would think you end up with an AoA for the definition and then an array of data (or AoA if you have multiple rows of data. The column of the data then corresponds directly to the column of the definition.

use strict; use warnings; #definition AoA my $transaction_records = [ [ 'Batch_Agency' => [ 1 .. 3] ], [ 'Batch_Date' => [ 4 .. 11] ], [ 'Batch_Type' => [ 12 .. 12] ], ]; my $i = 0; #build a map of column name to column my $key_map = { map { $_->[0] => $i++ } @$transaction_records }; #then your rows could look like my $row1 = [ 'agc', '05-JAN-2007', 'type']; my $row2 = [ 'agc', '05-JAN-2007', 'type']; #and you could access data like $row1->[ $key_map->{Batch_Agency} ] = 'abc'; #multiple rows could look like my $rows = [ $row1, $row2]; for my $i ( 0,1,2) { print $transaction_records->[$i]->[0], " = ", $row1->[$i], "\n"; }

___________
Eric Hodges

In reply to Re^5: Accessing an array of anonymous hashes by eric256
in thread Accessing an array of anonymous hashes by thezip

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.