In article <014701c1b2d1$38e62380$[EMAIL PROTECTED]> wrote "Raj Mohan" <[EMAIL PROTECTED]>:
> Hi All, > > Is that anybody can help me to find a solution for the blow:- > > I have a file like this:- ... > Seems that you need everything from the file except the first line. What you need, need you in one string: This snippet should do it: open INPUT, "<inputfile" or die "..."; <INPUT>; # Ignore the first line my $output = join ("\n", (<INPUT>)); close INPUT; Best Wishes, Andrea -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]