Help for this page

Select Code to Download


  1. or download this
    {
       no warnings 'substr';
       ... use substr here ...
    }
    
  2. or download this
    my $substr;
    if (length($_) >= 4) {
    ...
    } else {
       $substr = '';
    }
    
  3. or download this
    sub find_process {
       ...
    ...
       ... substr($file, $x, ...) ...
       ...
    }
    
  4. or download this
    sub find_process {
       no warnings 'substr';
    ...
       }
       ...
    }