trying to add isnumeric
#1

Hey all.
i tried to add if(!isnumeric(params)) into my fs but it says Undefined Symbol : isnumeric.
Can ya help me ?
Reply
#2

PHP код:
stock isNumeric(const string[]) {
    new 
length=strlen(string);
    if (
length==0) return false;
    for (new 
0lengthi++) {
        if (
        (
string[i] > '9' || string[i] < '0' && string[i]!='-' && string[i]!='+'// Not a number,'+' or '-'
        
|| (string[i]=='-' && i!=0)                                             // A '-' but not at first.
        
|| (string[i]=='+' && i!=0)                                             // A '+' but not at first.
        
) return false;
    }
    if (
length==&& (string[0]=='-' || string[0]=='+')) return false;
    return 
true;

Reply
#3

PHP код:
IsNumeric(text[])
    return !
sscanf(text"{d}"); 
Tada!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)