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