Help for this page
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);