Help for this page

Select Code to Download


  1. or download this
    my $mouse = 'This is a story about mice, "I dint know mice were so sma
    +rt."';
    print trimTo($mouse,30), "\n";
    
  2. or download this
    sub chop_to_size {
        my ($text, $length) = @_;
        return $text if length $text < $length;
    ...
        $text .= "...";
        $text;
    }