PHPのテキスト間のスペースをどのように数えることができますか?
example: hi how are you?
spaces: 3
スペースを数える方法はありますか?
言語:PHPのみ
これを使って:
substr_count($text, ' ');
を探していpreg_match_all
ます。
$numSpaces = preg_match_all('/[ ]/', $testStr, $matches);
$arr = count_chars($str,1);
echo $arr[32];