gpt4 book ai didi

php - 计算php中字符串中的确切子字符串

转载 作者:行者123 更新时间:2023-12-04 05:54:42 25 4
gpt4 key购买 nike

我如何知道字符串中子字符串的确切出现次数。例如,考虑以下字符串:

$string = 'The sun is bright, what a beatiful sunlight';

当我搜索“太阳”这个词时,我希望它返回 1 而不是 2。当我这样做时会发生这种情况:
$counter = substr_count($string, 'sun');

任何的想法?

最佳答案

$wordCounts = array_count_values(str_word_count($string,1));
$sunCount = (isset($wordCounts['sun'])) ? $wordCounts['sun'] : 0;

区分大小写...如果您想要不区分大小写,您可能需要使用使用单词边界的正则表达式
$sunCount = preg_match_all('/\bsun\b/i',$string);

关于php - 计算php中字符串中的确切子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9649517/

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