Justtechjobs.com Find a programming school near you






Online Campus Both


php3-list | 199908

Re: [PHP3] replace '_' with ' ' From: Chuck Hagenbuch (chagenbu <email protected>)
Date: 08/04/99

Quoting Robert Aden <robert <email protected>>:

> $string = str_replace("_", " ", $string);
> or
> $string = ereg_replace("_", " ", $string);

Note that the former is vastly preferable in terms of speed/efficiency, and
there's also a third (also fast) option:

$string = strtr($string, '_', ' ');

-chuck

--
Charles Hagenbuch, <chagenbu <email protected>>
--
"whatever is wrong with you ... it is no small thing." - dan

-- PHP 3 Mailing List <http://www.php.net/> To unsubscribe, send an empty message to php3-unsubscribe <email protected> To subscribe to the digest, e-mail: php3-digest-subscribe <email protected> To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 To contact the list administrators, e-mail: php-list-admin <email protected>