Forum Moderators: coopster

Message Too Old, No Replies

find and replace character

         

Komodo_Tale

9:29 pm on May 6, 2006 (gmt 0)

10+ Year Member



Is there an easy way to change the spaces in a string to '+' characters? Thanks

eelixduppy

10:53 pm on May 6, 2006 (gmt 0)



hello...


Is there an easy way

There is always an easy way to do something. It may, however, not be easy to find that way :)

anyway...here you go:

replace.php


$string = "blah blah blah blah blah blah pig!";
$string = str_replace(" ","+",$string);
echo $string;

This should work. hope this helps!

eelix