gpt4 book ai didi

php - 计算字符串中元音的简单方法?

转载 作者:可可西里 更新时间:2023-11-01 13:33:45 26 4
gpt4 key购买 nike

如果我定义一个简单的字符串变量,我将如何以最简单的方式计算并输出字符串中元音的数量?

我已经搜索并找到了许多类似的方法,但大多数似乎都比必要的更复杂。它们都很实用,也许复杂性是必要的,但我正在寻找尽可能简单的解决方案。

我的字符串变量是这样的:

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

我只想显示 a,e,i,o,u 的总实例。提前谢谢你。

最佳答案

这是一个简单的解决方案:

<?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>";
?>

关于php - 计算字符串中元音的简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7465304/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com