##
sub delete_initial_phrase
{
my ( $phrase ) = @_;
if ( $phrase =~ /([!,.:)])/ ) {
my $punc = $1;
return substr( $phrase, 1 + index( $phrase, $punc ));
}
else {
return $phrase;
}
}
####
blah blah!) Foo bar, and so on...
####
if ( $phrase =~ /([!,.:)]+)/ ) {
####
return substr( $phrase, length($punc) + index( $phrase, $punc ));