09.06.2014, 21:26
Dear Peeps 
It might sound a bit stupid but I've got problems with this code to strip spaces from a string:
It's giving the following errors:
Could you help me to find the problem please?
greetings and thank you,
Mike
2 Errors.

It might sound a bit stupid but I've got problems with this code to strip spaces from a string:
Код:
stock RemoveSpace(string[]) { for(new i=0; string[i]; i++) { if(string[i] == " ") { string[i] = ""; } } return string; }
Код:
C:\Users\Mike\Desktop\Server\gamemodes\gamemode.pwn(134096) : error 033: array must be indexed (variable "-unknown-") C:\Users\Mike\Desktop\Server\gamemodes\gamemode.pwn(134097) : error 027: invalid character constant Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
greetings and thank you,
Mike
2 Errors.