Help for this page

Select Code to Download


  1. or download this
    $_[0] =~ /^\s*\+\-?\d+\s*$/
    
  2. or download this
    if (is_integer_string($input){
       do_integer_function($input);
    ...
    else{
       die "You must supply an integer\n";
    }