Remove but not Replace

Remove but not Replace

I've been using throwaway stateless forms to perform mass operations to correct or add things in my database. I have some html strings in the database that I wanted to edit variables in, but it would taken a long time to manually do this. So I looked into making one of my throwaway stateless forms to do this only to discovered the while deluge "remove" is present, deluge "replace" is not! I finally see the need for Gaev's ReplaceAll(searchString,replacementString) global operation: http://help.zoho.com/portal/en/community?ftid=2266000000351138

MYSTRING = "MR. HOTGOD";

Alert = MYSTRING.replace("GOD","DOG");

...outputs MR. HOTDOG