Depending on your use case, Perl has a special string, '0 but true', which is evaluated to 0 in numeric context, but as true in Boolean context. This is sometimes useful for returning a zero but true value from a function to the caller. See for example https://riptutorial.com/perl/topic/649/true-and-false. The only thing special about that string is that it will issue no warning in numeric context; otherwise it is true, as any string other than the string containing only 0 ('0') and the empty string (''). Another possibility in the same context is to return a string such as '0e0'.

Another possibility is sometimes to return a reference to the variable containing the "0" string.


In reply to Re: methods for dealing with zero '0' as a string or char by Laurent_R
in thread methods for dealing with zero '0' as a string or char by boleary

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.