3v4l.org

run code in 300+ PHP versions simultaneously
<?php $test = "Test - test1"; $match = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', $test); var_dump($match); $match = preg_replace_callback('/(?<=^|[\x09\x20\x2D])./', function($matches) {return strtoupper($matches[0]);}, $test); var_dump($match);

preferences:
43.33 ms | 402 KiB | 5 Q