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