stock IsNumeric(string1[]){ for (new i = 0, j = strlen(string1); i < j; i++) { if (string1[i] > '9' || string1[i] < '0') { return 0; } } return 1;}