12.06.2010, 17:34
Is there a command out there that can can:
-Count the amount of characters given as in a input in a string
Example:
OUTPUT: 3
Can anyone help me make a function like that..?
-Count the amount of characters given as in a input in a string
Example:
pawn Код:
new string[128], count;
format(string, sizeof(string), "341,141,514,141");
count = strcount(string, ",");
print(count);
Can anyone help me make a function like that..?