stock strreplace(string[], find, replace){ for(new i=0; i < strlen(string); i++) { if(string[i] == find) string[i] = replace; }}