On Monday 28 January 2002 06:24, Philip J. Newman wrote:
> I'm trying to replace !@#$%^&*() with nothing how ever every thing that I
> try it takes out the space too which is bad. Siggestions
>
> $q=preg replace("!","",$q);


Use str_replace(). Only use preg() and friends *IF* you need to search for 
regular expressions.


  $q = str_replace(array('!', '@', '#'), '', $q);


Also, please do not cross-post.


-- 
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk

/*
Slow day.  Practice crawling.
*/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to