Help for this page

Select Code to Download


  1. or download this
    while (<FILEHANDLE>) {
        $_ = substr $_, 0, $maxlength if length > $maxlength;
        # ...
    }