TheAlgorithms-PHP/Strings/CountVowels.php
2023-10-05 10:11:31 +03:30

58 lines
1.5 KiB
PHP

<?php
/**
* This function returns the total number of vowels present in
* the given string using a simple method of looping through
* all the characters present in the string.
*
* @param string $string
* @return int $numberOfVowels
* @throws \Exception
*/
function countVowelsSimple(string $string): int
{
// Check for an empty string and throw an exception if so.
if (empty($string)) {
throw new \Exception('Please pass a non-empty string value.');
}
// Initialize variables.
$numberOfVowels = 0;
$vowels = ['a', 'e', 'i', 'o', 'u']; // Set of vowels for comparison.
// Convert the string to lowercase for case-insensitive comparison.
$string = strtolower($string);
// Split the string into an array of characters.
$characters = str_split($string);
// Loop through each character to count the vowels.
foreach ($characters as $character) {
if (in_array($character, $vowels)) {
$numberOfVowels++;
}
}
// Return the total number of vowels found.
return $numberOfVowels;
}
/**
* This function returns the Total number of vowels present in the given
* string using a regular expression.
*
* @param string $string
* @return int
* @throws \Exception
*/
function countVowelsRegex(string $string)
{
if (empty($string)) {
throw new \Exception('Please pass a non-empty string value');
}
$string = strtolower($string); // For case-insensitive checking
return preg_match_all('/[a,e,i,o,u]/', $string);
}