I think this looks pretty close...
#!/usr/bin/perl -w
use strict;
my @files = qw(file1.dat file2.dat);
my %hash;
foreach my $file (@files)
{
open (FILE, "<", $file) || die "can't open $file $!";
while (<FILE>)
{
next if /^\s*$/;
chomp;
my ($name,@tokens) = split(/,/,$_);
$name =~ s/_.*$//; #delete trailing _blah in name
push @{$hash{$name}},@tokens;
}
}
foreach my $name (sort keys %hash)
{
print "$name @{$hash{$name}}\n";
}
__END__
prints:
Bbbb 3333 4444 23 45
Cdd 3444 3444 24.45
Zddd 345 456 34 456.4
file1.dat:
Bbbb,3333,4444
Cdd,3444,3444
Zddd,345,456
file2.dat
Bbbb_rf1,23,45
Cdd_rf2,24.45
Zddd,34,456.4
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.