stock IsNumeric(string[]){ for(new o; o<strlen(string);o++) { if((string[o]>'9')||(string[0]<'0'))return 0; } return 1;}