I am looking for the shortest, simplest and most elegant way to count the number of capital letters in a given string.
feedback
|
| |||
|
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.
| |||
|
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. | |||
|
feedback
|