<?php $text = "php: A programming language"; $result = preg_replace_callback('/^([^a-z]*)([a-z])/i', function($m) { return $m[1].strtoupper($m[2]); }, $text); echo $result;
You have javascript disabled. You will not be able to edit any code.