RE: Replacing 2 strings

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

 



On Mon, 2005-05-30 at 11:13, Murray @ PlanetThoughtful wrote:
> > Someone much more clever that I can probably come up with something much
> > cleaner and efficient but.... This works...
> 
> Definitely not more clever and arguably not more efficient, but a different
> way of handling this might be:
> 
> <?
> 
> function replace($string){
>   $string = preg_replace("/(<|\^|>)/", "",$string);
>   $string = str_replace("_", " ", $string);
>   $string = ucwords(strtolower($string));
>   $string = str_replace(" ", "-", $string);
>   return $string;
> }
> 
> echo replace("<^JIM_JONES>");
> 
> ?>

AHHH! ucwords(); I probably looked right at it a million times.. I knew
there had to be something to do that....


-- 

s/:-[(/]/:-)/g


Brian        GnuPG -> KeyID: 0x04A4F0DC | Key Server: pgp.mit.edu
======================================================================
gpg --keyserver pgp.mit.edu --recv-keys 04A4F0DC
Key Info: http://gfx-design.com/keys
Linux Registered User #339825 at http://counter.li.org

-- 
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