php preg_match返回计数

时间:2012-07-15 21:54:56

标签: php preg-match

我有以下几个变量:

$texttofind = "story of a test";
$paragraph  = "the story of a test and a test paragraph used for
               testing the story of a test paragraph";

我想使用preg_match();来返回计数,在这种情况下将是2.任何想法?

1 个答案:

答案 0 :(得分:8)

不需要正则表达式,只需使用substr_count

echo 'Found texttofind ' . substr_count($paragraph, $texttofind) . ' times';

如果您真的想使用正则表达式,可以使用以下(较慢且不必要的复杂)表达式:

echo preg_match_all('/' . preg_quote($texttofind, '/') . '/', $paragraph);