Here is a solution using Data::Table. However, I was a bit surprised to discover that the helper functions (such as fromFile, fromCSV, etc.) of Data::Table do not seem to support using regular expressions as a delimiter. For the data you posted, I would have used \s+ as the delimiter. By the time I discovered this, I had already written this solution...so I thought I'd post it. A solution like this will work if your input files are tab delimited (or one could use fromCSV for files with other delimiters).
#!/usr/bin/env perl use strict; use warnings; use Data::Table; my @files = qw( input1.txt input2.txt input3.txt ); my @tables; foreach my $file (@files) { my $dt = Data::Table::fromTSV($file, 1); push @tables, $dt; } my $merged_table; TABLE: foreach my $i (0..$#tables){ if ($i == 0){ $merged_table = $tables[0]; next TABLE; } $merged_table = $merged_table->join($tables[$i], Data::Table:: +INNER_JOIN, ['freq'], ['freq']); } $merged_table->sort('freq', 1, 0); open my $output_fh, ">", "combined.txt" or die "Cannot open combined.t +xt: $!\n"; print {$output_fh} $merged_table->tsv; $output_fh->close; exit;

In reply to Re: Merging Columns from multiple files into a single file by kevbot
in thread Merging Columns from multiple files into a single file by ikhan

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.