MegastoRM

strLength

Apr 11th, 2015
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3. new const str[] = "asdf 123 456"
  4.  
  5. public plugin_init() {
  6. register_clcmd("say /len", "cmdLen")
  7. }
  8.  
  9. public cmdLen(id)
  10. client_print(id, print_chat, "string se sastoji od %d karaktera", strLenght(str)); // 12 karaktera
  11.  
  12.  
  13. public strLenght(const str2[]) {
  14. new iCounter = 0;
  15. while(str2[iCounter] != 0x00) iCounter++;
  16. return iCounter;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment