-2
$word = "Acrobat" (or Apple, Tea etc.)

如何使用 php 检测和回显给定单词的最后一个元音?我尝试了 preg_match 函数,谷歌搜索了几个小时,但找不到合适的解决方案。

字符串中可以有 ü、ö 等多字节字母。

4

6 回答 6

5

这是捕获字符串中最后一个元音的多字节安全版本。

$arr = array(
    'Apple','Tea','Strng','queue',
    'asartä','nő','ağır','NOËL','gør','æsc'
);

/*  these are the ones I found in character viewer
    in Mac so these vowels can be extended. don't
    forget to add both lower and upper case versions
    of new ones because personally I wouldn't rely
    on the i (case insensitive) flag in the pattern
    for multibyte characters.
*/
$vowels =
    'aàáâãāăȧäảåǎȁąạḁẚầấẫẩằắẵẳǡǟǻậặæǽǣ' .
    'AÀÁÂÃĀĂȦÄẢÅǍȀȂĄẠḀẦẤẪẨẰẮẴẲǠǞǺẬẶÆǼǢ' .
    'EÈÉÊẼĒĔĖËẺĚȄȆẸȨĘḘḚỀẾỄỂḔḖỆḜ' .
    'eèéêẽēĕėëẻěȅȇẹȩęḙḛềếễểḕḗệḝ' .
    'IÌÍÎĨĪĬİÏỈǏỊĮȈȊḬḮ' .
    'iìíîĩīĭıïỉǐịįȉȋḭḯ' .
    'OÒÓÔÕŌŎȮÖỎŐǑȌȎƠǪỌØỒỐỖỔȰȪȬṌṐṒỜỚỠỞỢǬỘǾŒ' .
    'oòóôõōŏȯöỏőǒȍȏơǫọøồốỗổȱȫȭṍṏṑṓờớỡởợǭộǿœ' .
    'UÙÚÛŨŪŬÜỦŮŰǓȔȖƯỤṲŲṶṴṸṺǛǗǕǙỪỨỮỬỰ' .
    'uùúûũūŭüủůűǔȕȗưụṳųṷṵṹṻǖǜǘǖǚừứữửự'
;

// set necessary encodings
mb_internal_encoding('UTF-8');
mb_regex_encoding('UTF-8');

// and loop
foreach ($arr as $word) {

    $vow = mb_ereg_replace('[^'.$vowels.']','',$word);
    // get rid of all consonants (non-vowels in this pattern)
    $lastVw = mb_substr($vow,-1);
    // and get the last one from the remaining vowels

    if (empty($lastVw))
    // it evaluates this line when there's no vowel in the string
        echo "there's no vowel in <b>\"$word\"</b>." . PHP_EOL;
    else
    // and vice versa
        echo "last vowel in <b>\"$word\"</b> is " .
        "<span style=\"color:#F00\">{$lastVw}</span>" . PHP_EOL;    
}

这是输出。

"Apple"中的 最后一个元音是e " Tea"中的最后一个元音是"Strng" 中没有元音。"queue"中的 最后一个元音 是e " asartä"中的 最后一个元音是ä "nő"中的 ​​最后一个元音是ő "ağır"中的 最后一个元音是ı "NOËL"中的 最后一个元音是Ë "gør"中的最后一个元音是ø 最后一个元音在“æsc”中是æ









于 2013-01-11T00:58:41.327 回答
2
$word = "Acrobat";
$vowels = array_intersect(str_split($word), array('A','E','I','O','U','a','e','i','o','u'));
echo array_pop($vowels);
于 2013-01-10T23:21:45.203 回答
1
function last_vowel($word) {
  for ($i = strlen($word) - 1; $i >= 0; --$i) {
      switch (strtolower($word[$i])) {
        case 'a': case 'e': case 'i': case 'o': case 'u': case 'y':
          return $word[$i];
      }
  }
  return null;
}

echo last_vowel("Apple");
于 2013-01-10T23:16:34.153 回答
0

使用方法 str_split()

http://www.php.net/manual/en/function.str-split.php

这会将您的字符串转换为数组,然后您可以使用数组的索引来查找字符串的第一个和最后一个字母。

-Array[0] 是第一个字母 *Array[total number of letters - 1] 是最后一个字母。

获取数组中的第一个和最后一个元素后,映射开始。例如: if(letter=="a"||letter=="A") echo "Apple";

等等...

于 2013-01-10T23:16:21.540 回答
0

我会说 Ed 或 Mark 的答案肯定更有效率,但如果你想要一个递归函数的例子,它是:

$word = "stellar";

function lastVowel($word)
{
    $vowels = array('a','e','i','o','u');
    $letter = substr($word, strlen($word) - 1);
    if(in_array(strtolower($letter), $vowels))
        return $letter;
    else
    {
        if(strlen($word) > 0)
            return lastVowel(substr($word, 0, strlen($word) - 1));
        else
            return "no vowels";
    }
}

echo lastVowel($word);

请注意,有更好的方法可以做到这一点。只是举一个具体的例子,不一定是“最好的”。

于 2013-01-10T23:21:57.763 回答
0

我会亲自preg_match()用于这项任务。

$arr = array(
    'Apple','Tea','Strng','queue'
);

foreach ($arr as $word) {

    preg_match('~[aeiou](?=[^aeiou]*$)~i',$word,$m);

    if (empty($m)) echo "there's no vowel in \"$word\".";
    else echo "last vowel in \"$word\" is <b style=\"color:#F00\">{$m[0]}</b>";
    echo PHP_EOL;   
}

这将输出

“Apple”中的最后一个元音是e
“Tea”中的最后一个
元音 是“Strng”中没有元音。
“队列”中的最后一个元音是e

于 2013-01-10T23:27:09.733 回答