计算字符串的分隔符

时间:2015-03-05 16:15:14

标签: php regex preg-match

$search = " I-love-stackoverflow ";

我正在尝试计算字符串$search中的短划线,这是我尝试的内容:

$count_dash = preg_match('/-/', $search);

我的结果是 1

dd( count($count_dash)); // result = enter image description here

如您所见,答案应为 2

我做错了什么?

0 个答案:

没有答案