Help for this page

Select Code to Download


  1. or download this
    binmode $fh_in;
    binmode $fh_out;
    ...
    while (<$fh_in>) {
       print $fh_out "$_\x0D\x0A";
    }
    
  2. or download this
    binmode $fh_out;
    
    ...
       my $rec = substr($str, 0, 90, '');
       print $fh_out "$rec\x0D\x0A";
    }