|
|
| We don't bite newbies here... much | |
| PerlMonks |
Re: Blow off blank line and lines with messagesby swiftone (Curate) |
| on Sep 20, 2002 at 11:00 UTC ( [id://199501]=note: print w/replies, xml ) | Need Help?? |
This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.
Your regex only skips lines that have "" messages. If you want to skip blank lines,
add next if $line =~ /^\s*$/;
The chomp will remove the newline of a blankline, but leave the line itself. (You aren't doing anything with any of the lines here, so I'm assuming you're showing simplified code) Besides, a "blank line" may be one that has spaces in it.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||