Gustav Wiberg wrote:
Hi there!
I guess this is an easy question. I have string...
"Hello you"
and I want to get the "Hello" part.
How do I do that? (I can of course search for first occurence of space
and then use substr, but I guess there is an easier solution?
how much easier do you want it? oh and guessing kinda sucks.
$str = "Hello World";
$words = explode(" ", $str);
echo $words[0];
... but what if you have double spaces, or a space at the beginning?
/G
http://www.varupiraten.se/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php