http://www.amxmodx.org/funcwiki.php?go=func&id=35
This will tell you how long a string is.
If you're curious (or if I'm just being an ass and you already knew), what this function does is check each cell of the array until it encounters an integer value of zero, since strings in pawn are actually arrays of integers that correspond to ASCII values.
Ex:
PHP Code:
new String[1337]
String="Your mother."
strlen(String)
strlen(String) will return the integer 12, because the function will find that String[12]==0, because String[12] is the cell of the array directly after the last character in the string.
__________________