Capitalizing an entire string.
#3

Quote:
Originally Posted by Niko_boy
Посмотреть сообщение
loop + to upper
say if u have a string names string
then to capitalize it try this ->
pawn Код:
new newstring[256];//or any size larger may be?
for( new i, c = strlen(string); i < c; i++ )
{
    format(newstring,sizeof(newstring),"%s%c",newstring,toupper(string[i]));
}
//use newstring now it must be capitalized ..!
You don't need to create a new string for that. You can just do:
pawn Код:
for(new i, len = strlen(string); i < len; ++i)
{
    string[i] = toupper(string[i]);
}
Reply


Messages In This Thread
Capitalizing an entire string. - by Dennis_Smith - 17.11.2012, 17:16
Re: Capitalizing an entire string. - by Niko_boy - 17.11.2012, 17:34
Re: Capitalizing an entire string. - by Stylock - 17.11.2012, 17:39

Forum Jump:


Users browsing this thread: 1 Guest(s)