Lowercase to Uppercase
#3

pawn Код:
stock strToUpper(string[]) {
    new
        i = 0;
    while(EOS != string[i]) {
        if('a' <= string[i] <= 'z') string[i] -= 32;
        ++i;
    }
}
Reply


Messages In This Thread
Lowercase to Uppercase - by JaKe Elite - 31.08.2013, 07:45
Re: Lowercase to Uppercase - by doreto - 31.08.2013, 07:48
Re: Lowercase to Uppercase - by Misiur - 31.08.2013, 07:49
Re: Lowercase to Uppercase - by [HiC]TheKiller - 31.08.2013, 07:52
Re: Lowercase to Uppercase - by JaKe Elite - 31.08.2013, 07:53
Re: Lowercase to Uppercase - by Misiur - 31.08.2013, 07:55
Re: Lowercase to Uppercase - by JaKe Elite - 31.08.2013, 07:58
Re: Lowercase to Uppercase - by Misiur - 31.08.2013, 08:03

Forum Jump:


Users browsing this thread: 2 Guest(s)