21.08.2012, 00:05
add this in bottom of your script
this is how its used
Код:
stock string_replace(string[], find, replace) { for(new i=0; string[i]; i++) { if(string[i] == find) { string[i] = replace; } } }
Код:
string_replace( string ,' ' ,'') // your string ,char that needs to be replaced ,new char