vote up 0 vote down star

how can we count space between text in php ?

example: hi how are you?

spaces: 3

is there any way to count spaces ?

Language : Only PHP

flag
@james, there are going to be a million different ways to do this. I'd go with whichever answer makes the most sense in the flow of your code, and whichever makes the most sense to your programming style. – James Skidmore Jun 23 at 17:39

3 Answers

vote up 9 vote down check

Use this:

substr_count($text, ' ');
link|flag
vote up 0 vote down

You're looking for preg_match_all.

$numSpaces = preg_match_all('/[ ]/', $testStr, $matches);
link|flag
vote up 0 vote down
$arr = count_chars($str,1);
echo $arr[32];
link|flag
This way still works, but it's really a round-about way, since the substr_count() function exists. – James Skidmore Jun 23 at 17:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.