Help for this page

Select Code to Download


  1. or download this
    $Text::Wrap::$columns = 50;
    $new_string = Text::Wrap::wrap( '', '<br /><br />', $string );
    
  2. or download this
    my $new_string;
    my $width = 50;
    ...
        $string = substr( $string, $brksp+1 );
    }
    $new_string .= $string;