(Formerly known as global function StrLen, which is now obsolete)
readonly int String.Length;
Returns the length of the string, in characters.
Example:
String text = "This is my string.";
Display("Length: %d", text.Length);
will display "Length: 18".
|