Help for this page

Select Code to Download


  1. or download this
    sub trimTo {
        my( $str, $n ) = @_;    
    ...
    
        ## Tack on the '...'
    }
    
  2. or download this
    sub trimTo {
        my( $str, $n ) = @_;    
    ...
    
        return substr( $str, 0, $truncLen ) . ' ...';
    }