Re: Easy question - delete strings from the beginning of space...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



to get rid of potential double spaces after the explode, you could do:
foreach ($words as $word) {
    if (!empty($word)) {
        $first = $word;
        break;
    }
}
echo $first;

This will always return the first word.

Jordan



On Sep 20, 2005, at 7:24 AM, Jochem Maas wrote:

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?


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux