Anonymous Monk,
You likely want to be using a CSV parsing module like
Text::CSV_XS or
Text::x_SV, but for this example I will be using
split. I have chosen to use
split because I have made several assumptions about your problem.
Assumptions:
- Each record is contained on a single line
- Each record is pipe delimited and no field contains any imbedded delimiters
- Each record is comprised of 3 fields
- Preservation of record ordering is important
- 2 or more records with the first 2 fields in common are desired to be joined
- These records may be anywhere in the file and are not necessarily adjacent
- Joining records means concatenating the 3rd fields with commas in the order the records appeared in the file
- Concattenated records in the output will be identified by commas in the 3rd field. This assumes no commas appear in the 3rd field prior to merging.
- The joined record will appear at the first occurence in the output
- The machine running the program will have sufficient memory to hold required information in memory
#!/usr/bin/perl
use strict;
use warnings;
my $input = $ARGV[0] || 'sample.txt';
open(my $fh, '<', $input) or die "Unable to open $input for reading: $
+!";
my %data;
while ( <$fh> ) {
chomp;
my @field = split /\|/, $_, 3;
my $key = join '|', @field[0,1];
$data{$key}{line} = $. if ! exists $data{$key};
push @{ $data{$key}{records} }, $field[2];
}
for ( sort { $data{$a}{line} <=> $data{$b}{line} } keys %data ) {
if ( @{ $data{$_}{records} } > 1 ) {
my $field3 = join ',', @{ $data{$_}{records} };
print join '|', $_, $field3;
}
else {
print join '|', $_, $data{$_}{records}[0];
}
print "\n";
}
Please forgive me for the rather tedious solution. I wanted to point out the importance of clearly and concisely stating the problem and assumptions.
Update: Simplified code and clarified assumptions
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.