Lowercase to Uppercase
#4

You can either just minus 32 of the ASCII value per character or use https://sampwiki.blast.hk/wiki/Toupper

pawn Код:
new string[10] = "potato", id;
while(string[id] != EOS)
{
    string[id] = toupper(string[id]);
    id++;
}
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: 3 Guest(s)