Help for this page

Select Code to Download


  1. or download this
    if ( length($_) > 80 ) {
       chop;
    ...
    else {
       print $_;
    }
    
  2. or download this
    while (length($_) > 80) {
       print substr($_, 0, 80) . "\n";
       $_ = substr($_, 80);
    }
    print $_ ;