21.12.2010, 11:02
Any idea how to delete this "_" in player name. For example John_Smith and it should be John Smith. This is my first post in this topic so please don't punish me
new name[10] = "John_Mayor";
name[strfind(name, "_", true)] = ' ';
printf("Name: %s",name); // Returns John Mayor