Special letters
#6

That's because the array size of inputtext is unknown, use that instead
pawn Код:
ValidateWord(const string[]) {
    for( ; ; ) {
        switch(string[0]) {
            case 'a'..'z', '0'..'9', 'A'..'Z': {
                #emit load.s.pri string
                #emit add.c 4
                #emit stor.s.pri string
            }
            case EOS: {
                return true;
            }
            default: {
                break;
            }
        }
    }
    return false;
}
Just to mention, a space (' ') isn't valid either, well you could simply add it if you want
Reply


Messages In This Thread
Special letters - by Lajko1 - 17.08.2015, 20:10
Re : Special letters - by Dutheil - 17.08.2015, 20:22
Re: Special letters - by Lajko1 - 18.08.2015, 15:27
Re: Special letters - by Evocator - 18.08.2015, 16:27
Re: Special letters - by Lajko1 - 18.08.2015, 20:13
AW: Special letters - by Nero_3D - 18.08.2015, 21:44

Forum Jump:


Users browsing this thread: 1 Guest(s)