Help for this page

Select Code to Download


  1. or download this
    my $index = rindex($string, ' ', 15);
    # Chop it at 15 even if we didn't find a space...
    $index = 15 if($index < 0);
    $string = substr($string, 0, $index);