PHP如何计算子字符串出现次数
admin
2024-04-02 19:55
短信预约 -IT技能 免费直播动态提醒
这篇文章将为大家详细讲解有关PHP如何计算子字符串出现次数,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
PHP 中计算子字符串出现次数
使用 strpos() 函数
strpos() 函数可在字符串中搜索子字符串的首次出现位置,如果找到,则返回其位置。可以使用此函数重复搜索子字符串,并累加出现的次数。
$string = "PHP is a powerful programming language";
$substring = "PHP";
$count = 0;
while (($position = strpos($string, $substring)) !== false) {
$count++;
$string = substr($string, $position + strlen($substring));
}
echo "The number of times "$substring" appears in "$string": $count";
使用正则表达式
正则表达式是一种强大工具,可用于文本模式匹配。可以使用正则表达式来查找子字符串的所有出现次数。
$string = "PHP is a powerful programming language";
$substring = "PHP";
$count = preg_match_all("/$substring/", $string, $matches);
echo "The number of times "$substring" appears in "$string": $count";
使用 mb_substr_count() 函数
mb_substr_count() 函数可计算字符串中子字符串出现的次数,它支持多字节字符。
$string = "PHP is a powerful programming language";
$substring = "PHP";
$count = mb_substr_count($string, $substring);
echo "The number of times "$substring" appears in "$string": $count";
使用 str_replace() 函数
str_replace() 函数可将字符串中的一个子字符串替换为另一个子字符串。可以使用此函数来计算子字符串的出现次数,通过将子字符串替换为空字符串并计算替换的次数。
$string = "PHP is a powerful programming language";
$substring = "PHP";
$count = substr_count($string, $substring);
echo "The number of times "$substring" appears in "$string": $count";
使用自定义函数
还可以创建一个自定义函数来计算子字符串的出现次数。
function count_substring($string, $substring) {
$count = 0;
$position = 0;
while (($position = strpos($string, $substring, $position)) !== false) {
$count++;
$position += strlen($substring);
}
return $count;
}
$string = "PHP is a powerful programming language";
$substring = "PHP";
$count = count_substring($string, $substring);
echo "The number of times "$substring" appears in "$string": $count";
以上就是PHP如何计算子字符串出现次数的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341