#1

anyone know how to remove uppercase (N).
Reply
#2

What do you mean? Removing an upper-case letter N in a string?
pawn Код:
new pos = strfind( string, "N", false );
if( pos != -1 ) strdel( string, pos, pos + 1 );
Reply
#3

only able to use lower case letters.
Reply
#4

pawn Код:
tolowerx( string[ ] )
{
   for( new i = 0; i < strlen( string ); i++ )
   {
      tolower( string[ i ] );
   }
   return string;
}
Reply
#5

not working.
Reply
#6

I could really go with some more details than just it's not working. If you're not going to put any effort into finding out WHY it's not working, I'm not going to either.

How are you using the function?
Reply
#7

I can not use the example uppercase Braz Y: N and becomes a (n)
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)