<?php $string = 'Hello. A question? How strange! Maybe even surreal!? Who knows.'; var_export( preg_split( '/(!\?|[!?.])/', $string, 0, PREG_SPLIT_DELIM_CAPTURE ) ); echo "\n\n"; var_export( preg_split( '/(!\?|[!?.])/', $string, -1, PREG_SPLIT_DELIM_CAPTURE ) ); echo "\n\n"; var_export( preg_split( '/(!\?|[!?.])/', $string, null, PREG_SPLIT_DELIM_CAPTURE ) );
You have javascript disabled. You will not be able to edit any code.