Hello dirtdog,

First, you have the logic back-to-front; you want:

next if !$ex_date; next if !defined($ex_date);

or

next unless ex_date; next unless defined($ex_date);

Second, the two statements are not equivalent. The first will skip to the next record if $ex_date has the value of 0 (zero), "" (the null string), or undef. See perlsyn#Truth-and-Falsehood. The second statement will skip only if $ex_date is undef.

Which form to use depends on how you define “null.” If by null you mean false, then use the first form; but if you mean undefined, then the second form is the one you want. Without more information, it’s difficult to guess which meaning of “null” best suits your needs; but the second interpretation (null means undef) is usually the safer option.

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,


In reply to Re: Checking Variable for Not Null by Athanasius
in thread Checking Variable for Not Null by dirtdog

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.