Author: Real Gagnon
Author's WebSite: http://tactika.com/realhome/realhome.html
function remove(s, t) {
/*
** Remove all occurrences of a token in a string
** s string to be processed
** t token to be removed
** returns new string
*/
i = s.indexOf(t);
r = "";
if (i == -1) return s;
r += s.substring(0,i) + remove(s.substring(i + t.length), t);
return r;
}
Posted On: 10-Jul-1999