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

Hi i have something like this in a file

12345   aaaaaaaaaabbbbbbbbbb 
23456   bbcbcbbgyhuhuhhhhhhh 
12345   7ijkunmmnniiiiiiii
23456   bbcbcbbgyhuhsdrfrrhhhv

I want to merge lines into a single line based on first

field i,e.,

12345   aaaaaaaaaabbbbbbbbbb 12345   7ijkunmmnniiiiiiii
23456 bbcbcbbgyhuhuhhhhhhv 23456   bbcbcbbgyhuhsdrfrrhh

can any one let me know how to do that?

share|improve this question
2  
What have you tried? – DarkCthulhu Jul 29 '12 at 6:58
sed 'N;s/\n/ /' is joining the lines but i couldnt get how to specify my condition – user1536457 Jul 29 '12 at 7:02

3 Answers

while (<DATA>) {
    ($x, $y) = split;
    push @{$lines{$x}}, $y;
}

while (($x, $y) = each %lines) {
    print "$x\t$_\t" for @{$y};
    print "\n";
}

__DATA__
12345   aaaaaaaaaabbbbbbbbbb 
23456   bbcbcbbgyhuhuhhhhhhh 
12345   7ijkunmmnniiiiiiii
23456   bbcbcbbgyhuhsdrfrrhhhv
share|improve this answer
I am sorry to say that none of these are working. – user1536457 Jul 29 '12 at 7:50
use strict;

open my $fh, '<your_file'
   or die "cant open file $!";

my %result; # result hash

# read file line by line
while (my $line = <$fh>) {
    chomp $line;

    # check format
    if ( $line =~ m/^(\d+)\s+(.*?)$/x ) {

        # add value to anonymous array in hash
        $result{$1} = [] unless exists $result{$1};
        push @{$result{$1}}, $2;
    }
}

# print result
while (my ($key, $values) = each %result) {

   printf "%s ", $key;
   for my $value (@$values) {

       printf "%s,", $value;
   }
}

close $fh;
share|improve this answer
hi, its printing just 3rd and 4rth lines of my file its not merging the lines having common first field – user1536457 Jul 29 '12 at 7:51
Sorry, I have mistake in regexp, I've already fixed it. Try again :) – fxzuz Jul 29 '12 at 8:18
hi thank you very much ts working i wanted the result to be printed line by line – user1536457 Jul 29 '12 at 8:39

An awk alternative:

awk '
  { A[$1] = A[$1] $0 " " } 
  END { for (k in A) print A[k] }' infile

Concatenates each line on to an associative array with $1 as the key.

share|improve this answer

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.