1 2 3 4 | <?php $input = "This is another text string. 2.0 times longer."; echo preg_replace("/(^\.|\s\.|\.\s|\.$)/", " $1", $input); ?> |
PD9waHAKICAgICRpbnB1dCA9ICJUaGlzIGlzIGFub3RoZXIgdGV4dCBzdHJpbmcuIDIuMCB0aW1lcyBsb25nZXIuIjsKICAgIGVjaG8gcHJlZ19yZXBsYWNlKCIvKF5cLnxcc1wufFwuXHN8XC4kKS8iLCAiICQxIiwgJGlucHV0KTsKPz4=
-
upload with new input
-
result: Success time: 0s memory: 13112 kB returned value: 0
<?php $input = "This is another text string. 2.0 times longer."; echo preg_replace("#(\S)\.(\s|$)#", "$1. ", $input); ?>This is another text string . 2.0 times longer .
-
result: Success time: 0s memory: 13112 kB returned value: 0
This is another text string . 2.0 times longer .


