http://www.perlmonks.org?node_id=1008352


in reply to Removing blank/empty lines

Hello perlnoobster,

"I just want to omit them and tried chomp but it didn't work ..."
This is because chomp is used to remove trailing strings (most often, newlines) from records. So instead of removing the blank line, it removes the trailing newline at the end of the blank line resulting in an empty string.

As stated by Anonymous Monk above, you could use a regex to rewrite

push @Results, $_ unless ($_ eq "\n")
like
push @Results, $_ unless /^\s*$/;
or even (depending on how much you trust your data),
push @Results, $_ unless /^$/;
Have a look at perlretut if you need help understanding basic regexs.

On a side note, your code will be much easier to read and debug if you adopt a style that uses proper indentation. The indentation will help you to better visualize conditional blocks and control structures, as well as help you to gain a better understanding of variable scope.

Here's a sample rewrite fixing the indentation with a few small modifications.

#!/usr/bin/perl #Always use strict; use warnings; #Use lexical variables instead of bareword filehandles open my $in, "<", "input_file" or die "Couldn't read input_file: $!\n"; my @results; while (<$in>) { chomp; push @results, $_ unless /^\s*$/; } #Close filehandle's when you're done with them. close $in; open my $out2, ">>", "output_file" or die "Couldn't open output_file: $!\n"; for (@results) { print $out2 "$_\n" if s/.*\///; } close $out2;