in reply to Re^8: Regex result being defined when it shouldn't be(?)
in thread Regex result being defined when it shouldn't be(?)

defined($var)==0
Do you also write conditios as
if ( ($var < $threshold) == TRUE ) ...
? Then why not
if ( ( ($var < $threshold) == TRUE ) == TRUE ) ...
or more?