Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: Remove whitespace between lines

by poj (Abbot)
on Feb 03, 2015 at 18:51 UTC ( [id://1115439]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Remove whitespace between lines
in thread Remove whitespace between lines

Try
while (my $line = <$fh_in>) { print $fh_out $line if ($line !~ /^\s*$/); }
poj

Replies are listed 'Best First'.
Re^4: Remove whitespace between lines
by wrkrbeee (Scribe) on Feb 03, 2015 at 18:55 UTC
    That's it, works great! Appreciate your interest and patience! :-)
      A more normal way to do this is to skip the blank lines and then process those lines further.
      while (my $line = <$fh_in>) { next if ($line ~ m/^\s*$/); #skip blank lines #more processing of this non-blank line }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1115439]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-04-25 06:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found