Right, but you don't have to presize it. Just push entries onto it as you parse them.

For instance, to invent a stupid-simple data format, and demonstrate parsing it and doing a thing or two with the data once parsed:

#!/usr/bin/env perl5 use strict; use warnings; my @clients; my %tmp; while(<DATA>) { chomp; # Assume a format of "Type Data" my ($type, $data) = split / /; # If it's a MAC address, save off our pre-existing record (if any) +, # and start a new one. if($type eq "MAC") { if(keys %tmp) { # Have to unroll a copy here, otherwise the next line empt +ies # it out. push @clients, { (%tmp) }; %tmp = (); } $tmp{MAC} = $data; } # RSSI and SNR just get saved $tmp{RSSI} = $data if $type eq "RSSI"; $tmp{SNR} = $data if $type eq "SNR"; } # Save the 'last' one if we fell off the end push @clients, \%tmp if keys %tmp; # Show it use Data::Dumper; print Dumper \@clients; # Find a given entry sub showmacsnr { my $mac = shift; my @ba = grep { $_->{MAC} eq $mac } @clients; if(@ba) { my $ent = $ba[0]; print "MAC $mac has SNR $ent->{SNR}\n"; } else { print "Can't find MAC $mac\n"; } } showmacsnr("ba:98:76:54:32:10"); showmacsnr("thi:is:is:nt:re:al"); # Sample data __DATA__ MAC 01:23:45:67:89:ab RSSI 12 SNR 18 MAC ba:98:76:54:32:10 RSSI 7 SNR 3

So you end up with output like:

% ./tst.pl $VAR1 = [ { 'RSSI' => '12', 'SNR' => '18', 'MAC' => '01:23:45:67:89:ab' }, { 'SNR' => '3', 'RSSI' => '7', 'MAC' => 'ba:98:76:54:32:10' } ]; MAC ba:98:76:54:32:10 has SNR 3 Can't find MAC thi:is:is:nt:re:al

In reply to Re^3: Create Arrays On-the-Fly by fullermd
in thread Create Arrays On-the-Fly by spickles

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.