while(){ next if $_ eq $/; push @data, $_; } # shorter: $_ ne $/ and push @data, $_ while ; #### while(){ chomp; next if $_ eq ''; push @data, $_; }