|
string_length(str) |
|
str = The string of which you want to find the length of.
Example #1:
In the above example inputstringlen will hold the number of characters of the string in string_length, which in this case would be 16 - ("Check the length" is 16 characters long). This function is particularly useful for counting the number of characters a player has input:
Example #2:
Revision #1 |