Help for this page

Select Code to Download


  1. or download this
    if (length ($string) > 15) {
      my $last;
    ...
        $string = substr($string,0,12) . "..."; 
      } 
    }
    
  2. or download this
    ( $string =~ s/(.{0,$starting_length})\s/"$1...$last"/e ) or $string =
    + substr($string,0,12) . "...";