strtolower?
#6

pawn Код:
stock CapitalizeString(string[])
{
    for(new i = 0, j = strlen(string); i < j; i ++)
    {
        string[i] = toupper(string[i]);
    }
    return 1;
}

stock UncapitalizeString(string[])
{
    for(new i = 0, j = strlen(string); i < j; i ++)
    {
        string[i] = tolower(string[i]);
    }
    return 1;
}
Reply


Messages In This Thread
strtolower? - by Kemula - 30.05.2016, 19:35
Re: strtolower? - by AndreT - 30.05.2016, 19:39
Re: strtolower? - by zSuYaNw - 30.05.2016, 19:49
Respuesta: Re: strtolower? - by Kemula - 30.05.2016, 21:01
Re: strtolower? - by Vince - 30.05.2016, 22:06
Re: strtolower? - by SickAttack - 31.05.2016, 01:29
Re: strtolower? - by SyS - 31.05.2016, 02:51
Re: strtolower? - by SickAttack - 31.05.2016, 03:07
Re: strtolower? - by justice96 - 31.05.2016, 03:10
Respuesta: Re: strtolower? - by Kemula - 31.05.2016, 08:02

Forum Jump:


Users browsing this thread: 4 Guest(s)