21.12.2010, 11:49
Well here's an example:
All it does is find the cell containing _ and then replace it with a space character.
pawn Код:
new name[10] = "John_Mayor";
name[strfind(name, "_", true)] = ' ';
printf("Name: %s",name); // Returns John Mayor

