I am looking for the shortest, simplest and most elegant way to count the number of capital letters in a given string.

link|improve this question

17% accept rate
4  
If you'd like to cheat: strlen(strtoupper($str)) ;) – Arms Oct 13 '09 at 2:47
Simplest and most elegant != code golf – 280Z28 Oct 13 '09 at 2:52
1  
str_replace(range('A', 'Z'), '', $str, $num_caps); echo $num_caps; – GZipp Oct 13 '09 at 5:00
feedback

3 Answers

function count_capitals($s) {
  return strlen(preg_replace('![^A-Z]+!', '', $s));
}
link|improve this answer
feedback

It's not the shortest, but it is arguably the simplest as a regex doesn't have to be executed. Normally I'd say this should be faster as the logic and checks are simple, but PHP always surprises me with how fast and slow some things are when compared to others.

function capital_letters($s) {
    $u = 0;
    $d = 0;
    $n = strlen($s);

    for ($x=0; $x<$n; $x++) {
        $d = ord($s[$x]);
        if ($d > 64 && $d < 91) {
            $u++;
        }
    }

    return $u;
}

echo 'caps: ' .  capital_letters('HelLo2') . "\n";
link|improve this answer
Just like in C! – alex Nov 2 '10 at 2:04
feedback

function count_capitals is faster by far.

With very short strings count_capitals is only a little faster but with the first paragraph of "Lorem ipsum..." it's 0.03 seconds to run 3000 itterations vs. 1.8 seconds to run the same string thru function capital_letters 3000 times.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.