Help for this page

Select Code to Download


  1. or download this
    if ($num =~ /1-9/)
    
  2. or download this
    if ($num =~ /^[1-9]+$/)
    
  3. or download this
    if ($num >= $minimum and $num <= $maximum and int($num) == $num) { ...
    + }