my $string='hello I went to the store yesterday and the day after and the day after'; if($string=~m/.+?(yesterday.+?after).+?$/i){ print 'Summary: ',$1,$/; ## print yesterday and the day after }