Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I define a simple string variable, how would I count and output the number of vowels in the string in the simplest possible way?

I have searched and found a number of similar ways to do so, but most seem more complex than necessary. They are all functional and maybe the complexity IS necessary, but I am looking for the simplest solution possible.

My string variable would be something like:

$someString = "This is some text with some more text and even more text."

I just want to display the total instances of a,e,i,o,u. Thank you in advance.

share|improve this question
Although this certain problem might not really affect performance, but you should look for the least complexity first and then try to simplifiy as possible. Actually you should always, when possible, think instead of making the processor think. – Tamer Shlash Sep 19 '11 at 0:31

8 Answers

up vote 2 down vote accepted

This works, and is probably the simplest way:

<?php
$string = "This is some text with some more text and even more text.";
echo "There are <strong>".preg_match_all('/[aeiou]/i',$string,$matches)." vowels</strong> in the string <strong>".$string."</strong>";
?>

See a working example here: Example of my script.

I hope this helps.

share|improve this answer

Why not just

$Vowels = substr_count($someString, 'a')+substr_count($someString, 'e')+substr_count($someString, 'i')+substr_count($someString, 'o')+substr_count($someString, 'u');

I would, however, encase it in a function otherwise you would have to change the names of the variables every time you want to reuse it:

function CountVowels($String) {
    return substr_count($String, 'a')+substr_count($String, 'e')+substr_count($String, 'i')+substr_count($String, 'o')+substr_count($String, 'u');
}

echo CountVowels('This is some text with some more text and even more text.');
//Echos 17
share|improve this answer
Note: this might be slower than actually iterating through (though, because it is a predefined function, it might be faster) – John Kurlak Sep 19 '11 at 0:21
Really smart! but takes much more performance than it deserves. – Tamer Shlash Sep 19 '11 at 0:28

untested but should work:

$matches = preg_match_all('/[aeiou]/i', $someString, $ignore);
share|improve this answer
2  
I think the pattern has to be in a string. – icktoofay Sep 19 '11 at 0:09
@icktoofay you are correct – evan Sep 19 '11 at 0:13
preg_match('#[aeiou]#i', $someString, $matches);
echo count($matches) - 1, "\n";

Something like this ought to work. I can't think of a simpler method.

share|improve this answer
$someString = "This is some text with some more text and even more text.";
echo preg_match_all('/[aouie]/i', $someString, $out);
share|improve this answer

Not suited for strings in multibyte character sets.

function countSpecificChars ($string, $charsOfInterest) {
    $count = 0;
    $len = strlen($string);
    for ($i = 0; $i < $len; $i++) {
        if (in_array($string[$i], $charsOfInterest)) {
            $count++;
        }
    }
    return $count;
}

function countVowels ($string) {
    return countSpecificChars($string, array('a', 'e', 'i', 'o', 'u'));
}

echo countVowels('This is some text with some more text and even more text.');
// echoes '17'
share|improve this answer
$someString = "This is some text with some more text and even more text.";

$total = 0;
$vowels = Array('a','e','i','o','u');

for ($i=0;$i<strlen($someString);$i++)
{
    for ($j = 0;$j<5;$j++)
        if ($someString[$i] == $vowels[$j])
        {
            $total++;
            break;
        }
}
echo $total;
share|improve this answer
I think you'd want to make that continue 2. – alex Sep 19 '11 at 1:11
@alex: Oh no! it shouldn't be continue at all, but rather break to end the entire second for loop at once. – Tamer Shlash Sep 19 '11 at 1:17
break and continue 2 should do the same thing, I think. – alex Sep 19 '11 at 1:24

Here is another way to do it...

$vowels = array('a', 'e', 'i', 'o', 'u');

$vowelsCounts = array_sum(
                 array_intersect_key(
                  array_count_values(
                   str_split(
                    strtolower($str)
                   )
                  ),
                  array_flip($vowels)
                 )
                );

CodePad.

But, this works too, just make sure you don't operate this on the original string, as it will change it.

str_replace($vowels, FALSE, $str, $vowelsCounts);

CodePad.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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