stock IsNumeric(const string[]){ if(!string[0]) return 0; new i=0; if(string[0] == '+' || string[0] == '-') i++; while(string[i]) { if (string[i] < '0' || string[i] > '9') { return 0; } i++; } return 1;}