On 2012-04-16 07:58, Shekar wrote:

     next if (/^\s$/);

You probably meant:

  next if /^\s*$/;  # skip blank lines

--
Ruud

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to