IsNumeric(const string[]){ for(new i = 0, l = strlen(string); i <= l; i++) { if(!('0' <= string[i] <= '9')) return 0; } return 1;}