Help for this page

Select Code to Download


  1. or download this
        if(('$checkvalue' gt '$value1') &&
           ('$checkvalue' le '$value2'))
    ...
            print "$checkvalue $value1 $value2\n";
    
        }
    
  2. or download this
        if(($checkvalue > $value1) &&
           ($checkvalue <= $value2))
    ...
            print "$checkvalue $value1 $value2\n";
    
        }