Find the lengths of a string
strlen( const string[] )
Counts the number of characters in string
, not including the terminating null.
string | The string that will be checked |
Returns the number of characters in string
new x; new s{40} = "CatDogAnt"; x = strlen(s); // x is now 9