up vote 1 down vote favorite
share [g+] share [fb]

Using Php. Need:

On String Input: "Some terms with spaces between"
OutputArray <String>: {Some, terms, with, spaces, between}
link|improve this question

feedback

4 Answers

up vote 13 down vote accepted

You could use explode, split or preg_split.

explode uses a fixed string:

$parts = explode(' ', $string);

while split and preg_split use a regular expression:

$parts = split(' +', $string);
$parts = preg_split('/ +/', $string);

An example where the regular expression based splitting is useful:

$string = 'foo   bar';  // multiple spaces
var_dump(explode(' ', $string));
var_dump(split(' +', $string));
var_dump(preg_split('/ +/', $string));
link|improve this answer
Its explode not implode. – Ólafur Waage Mar 6 '09 at 12:47
Do you mean explode? – strager Mar 6 '09 at 12:47
Sure, I meant explode not implode. – Gumbo Mar 6 '09 at 12:49
1  
I mix up those two constantly too. Until the script explodes in my face. – christian studer Mar 6 '09 at 13:20
2  
The split function is deprecated in php 5.3 so use explode or preg_split instead – Dimitri Jul 4 '10 at 16:18
show 1 more comment
feedback
$parts = explode(" ", $str);
link|improve this answer
feedback

Just a question, but are you trying to make json out of the data? If so, then you might consider something like this:

return json_encode(explode(' ', $inputString));
link|improve this answer
feedback
print_r(str_word_count("this is a sentence", 1));

Results in:

Array ( [0] => this [1] => is [2] => a [3] => sentence )
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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