in reply to Re: Re: What is the best way to determine if a string is blank?
in thread What is the best way to determine if a string is blank?

Actually it should have been unless ($foo =~ /\S/) to maintain the same logic as the other examples.

I think you may be confusing \s (whitespace) with \S (non-whitespace).

--
<http://www.dave.org.uk>

"Perl makes the fun jobs fun
and the boring jobs bearable" - me

  • Comment on Re: Re: Re: What is the best way to determine if a string is blank?