Contact: aviboots(AT)netvision.net.il
39,890 questions
51,817 answers
573 users
$string = 'php java css c python sql cpp go csharp'; $array = explode(' ', $string); foreach ($array as $key => $val) { if (strlen($val) <= 3) { $array[$key] = strtoupper($val); } else { $array[$key] = $val; } } $string = implode(' ', $array); echo $string; /* run: PHP java CSS C python SQL CPP GO csharp */
$string = 'php java css c python sql cpp go csharp'; $string = preg_replace_callback('/\b\w{1,3}\b/', function($matches) { return strtoupper($matches[0]); }, $string); echo $string; /* run: PHP java CSS C python SQL CPP GO csharp */