http://www.perlmonks.org?node_id=19068


in reply to can i disable certain warnings?

well it's just from blank spaces being read from my input sources, and i can't seem to get rid of all of them becuz the format the sources are in seem to change each time we get a new one it's really frustrating... i'll try your suggestions, thanx a lot

Replies are listed 'Best First'.
RE: Re: can i disable certain warnings?
by BigJoe (Curate) on Jun 20, 2000 at 23:49 UTC
    What I do to make sure data is going to be in the vars that come in I usually use:
    if (! $myvalue ){ $myvalue = $defaultValue; }
    If this is what you are asking.

    --BigJoe
      Another way to write this is:
      $myvalue ||= $defaultValue;
      ...of course, if $myvalue had a "0" as a legitgimate value, you would want something like:
      defined $myvalue or $myvalue=$defaultValue;