Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im just wondering if there a way to write this code in just one line.

$exp = explode(" ", $text);
$cut = $exp[0];

So without having to assign variables.

Thanks

share|improve this question

4 Answers

up vote 8 down vote accepted

If you only ever want the first part, then avoid the array workaround with strtok:

$cut = strtok($text, " ");

It cuts out something from the string until the first delimiter (space in your case).

share|improve this answer
5  
This is a very good answer, and it works perfectly unless the first character is " ". The result of OP's question would be an empty string and the result of your answer would be the string from char at pos 1 to the next space. +1 anyway. – Richard86 May 15 '11 at 19:25
@richard86: Interesting. I never realized it actually skips to the first non-delimiter. Would usually apply trim() to get that exact behaviour. But that's a significant difference to explode then, if you might need/expect an empty string part too. – mario May 15 '11 at 19:36
$cut = preg_replace('/ [\s\S]*$/', '', $text);

http://codepad.org/yujJRnYS

share|improve this answer
This is the only fully correct answer. – Benji XVI May 15 '11 at 19:48
$var = reset(explode(" ", $text));
share|improve this answer
but you would end up with a $var that has the first element (like the questions $cut, but with nothing that would have the complete array, like $exp – Nanne May 15 '11 at 18:40
this will give an error too: Strict Standards: Only variables should be passed by reference – meze May 15 '11 at 18:41
@Nanne. That's the question of OP. – PeeHaa 埽 May 15 '11 at 18:43
@meze: You're right about strict! – PeeHaa 埽 May 15 '11 at 18:45
Hmm, thought I left another comment? anyway @ question: you are right :D I ignored that line because without assigning anything this would be rather pointless, but interpreting it as "without assiging anything extra" it's quite valid :) – Nanne May 15 '11 at 18:47
$cut = substr ( $text, 0, strpos ( $text, ' ' ) );

OR

$cut = substr ( trim ( $text ), 0, strpos ( trim ( $text ), ' ' ) );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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