04.08.2010, 17:14
Um, is it the same as IsNumeric?
Not sure, but here is the IsNumeric
Not sure, but here is the IsNumeric
pawn Код:
IsNumeric(const string[])
{
for (new i = 0, j = strlen(string); i < j; i++)
{
if (string[i] > '9' || string[i] < '0') return 0;
}
return 1;
}