Is it possible to search for more than one bit of text to replace in a string.
For example
replace("This*and This%", ('*', '%'), " ")
... Obviously the above doesn't work :s
I can't think of any efficient alternatives...
Maybe
replace(replace("This*and This%", "*", " ")), "%", " ")
This works ^^ But just doesn't seem right. Maybe I'm just being anal <img src="smileys/smiley5.gif" border="0" align="middle" />
Thanks in advanced!