Advertisement
DraKiNs

[COD] Maiúsculo para Minúsculo

Jul 1st, 2011
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.29 KB | None | 0 0
  1. static
  2.     string[22];
  3.  
  4. string = "OLA BABY"; // string para testes
  5.  
  6. for(new i = 0, j = strlen(string); i != j; ++i) // circuito em string, rápido
  7. {
  8.     if(0x5B > string[ i ] > 0x40)
  9.     {
  10.         // caso o caracter string[i] for maisculo
  11.         string += 32;  // passar para minusculo  (exemplo)
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement