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

whileloops 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