12

我们如何计算 PHP 中文本之间的空格?

example: hi how are you?

spaces: 3

有没有办法计算空间?

语言:只有 PHP

4

3 回答 3

46

用这个:

substr_count($text, ' ');
于 2009-06-23T17:37:10.740 回答
2

你正在寻找preg_match_all.

$numSpaces = preg_match_all('/[ ]/', $testStr, $matches);
于 2009-06-23T17:37:41.143 回答
1
$arr = count_chars($str,1);
echo $arr[32];
于 2009-06-23T17:37:03.330 回答