Replace(string[128], find[128], replace[128]){ new pos; while((pos = strfind(string, find, true)) != -1) { strdel(string, pos, pos + strlen(find)); strins(string, replace, pos); } return string;}