http://qs321.pair.com?node_id=168113


in reply to remove blank lines with regex

Consider this:

# Open both IN_FILE and OUT_FILE here! while(<IN_FILE>) { chomp; next unless length; print OUT_FILE "$_\n"; }

I always come back to the following:

Do not slurp in a file into an array. Someday that input file will be huge. And that will happen when used for
production data. And you're on vacation. And you'll have to come in to the office during that sunny day on the beach.

Read the input file line by line and act upon each line (here by potentially writing it to the output file.)

Everything went worng, just as foreseen.