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:

#!/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.

Cheers - L~R

Update: Simplified code and clarified assumptions

In reply to Re: amalgamate similar lines by Limbic~Region
in thread amalgamate similar lines by Anonymous Monk

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.