Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two csv files with following data:

gt1/sd2    34      3
gt1/sd3    67      4
gt1/sd4    20     -9

and second csv file with data:

gt1/sd2    9    6
gt1/sd5    10   8
gt1/sd9    21   10

Now I want to compare the first column of each csv and see if they are same then print both the csv columns into one csv.

I have tried using reading these files into hashes. And my code looks like this right now. I am kind of stuck how to write the output csv when keys are found equal for both the hashes.

my %hash1;
while (my $line = <file1> ) {
    $line =~ s/\s*\z//;
    my @array = split /,/, $line;
    my $key = shift @array;
    $hash1{$key} = \@array;
}
my %hash2;
while (my $line1 = <file2> ) {
    $line1 =~ s/\s*\z//;
    my @array1 = split /,/, $line1;
    my $key1 = shift @array1;
    $hash2{$key1} = \@array1;
}
while (my ($k,$v)=each %hash1){
    for ( keys %hash1 ) {
        unless ( !exists $hash2{$_} ) {
            print "$_: found in second hash\n";
            next;
        }
        print "$k $v\n"
    }
}

And output csv should have following for this example:

gt1/sd2    34      3    gt1/sd2    9    6
gt1/sd3    67      4    NotFound NotFound NotFound
gt1/sd4    20     -9  NotFound   NotFound NotFound
share|improve this question
1  
I cleaned up your formatting a bit but I think your while loops got messed up when you pasted in your code, while (my $line = ) doesn't make much sense. – mu is too short Nov 17 '12 at 4:54
@muistooshort thanks for editing the code and pointing it out. – user1769932 Nov 17 '12 at 5:00

1 Answer

It is better to use Text::CSV to parse the CSV files:

#!/usr/bin/env perl

use strict;
use warnings;

use Text::CSV;

my $csv = Text::CSV->new( { allow_whitespace => 1, sep_char => "\t" } );

open my $fh1, '<', 'file1' or die "Error opening file: $!";
open my $fh2, '<', 'file2' or die "Error opening file: $!";

my %key;
while ( my $row = $csv->getline($fh2) ) {
    $key{ $row->[0] } = [ $row->[1], $row->[2] ];
}

while ( my $row = $csv->getline($fh1) ) {
    my $gt = $row->[0];
    my @columns;
    if ( exists $key{$gt} ) {
        @columns = ( @$row, $gt, @{ $key{$gt} } );
    }
    else {
        @columns = ( @$row, ('Not Found') x 3 );
    }
    printf "%-10s\t%d\t%d\t%-10s\t%-10s\t%s\n", @columns;
}

Output:

gt1/sd2         34      3       gt1/sd2         9               6
gt1/sd3         67      4       Not Found       Not Found       Not Found
gt1/sd4         20      -9      Not Found       Not Found       Not Found
share|improve this answer
hi Alan, I am getting following error for your solution: Can't locate auto/Text/CSV/getline.al in @INC for the line which contains my $row = $csv->getline($fh2). – user1769932 Nov 19 '12 at 21:38
One more point, output is in CSV format. – user1769932 Nov 19 '12 at 21:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.