Your script will store the contents of the file in memory twice.
This one will create the necessary arrays and fill them directly while reading the file.
#!/usr/bin/perl -w
use strict;
# create three empty array references
my %arrays = map {$_, []} qw ( A B C );
my $ar_ref = undef;
while (<DATA>) {
if (/ABC header line (\w)/) {
die "unrecognized header <$1>\n" unless exists $arrays{$1};
$ar_ref = $arrays{$1};
}
else {
die "no current array\n" unless $ar_ref;
chomp;
push @$ar_ref, $_;
}
}
for (keys %arrays) {
print "$_ => ( @{$arrays{$_}} )\n";
}
__DATA__
ABC header line A
A line 1
A line 2
A line 3
A line 4
ABC header line B
B line 1
B line 2
B line 3
ABC header line C
C line 1
C line 2
C line 3
C line 4
And this is the result:
A => ( A line 1 A line 2 A line 3 A line 4 )
B => ( B line 1 B line 2 B line 3 )
C => ( C line 1 C line 2 C line 3 C line 4 )
HTH
cchampion
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.