18.08.2017, 05:54
Greedings,i want to ask you something.I have got stock IsNumeric from the net,and i want to isnumeric with float numbers.
Code:
Code:
PHP код:
stock IsNumeric(const string[])
{
for (new i = 0, j = strlen(string); i < j; i++)
{
if (string[i] > '9' || string[i] < '0') return 0;
}
return 1;
}