Len Function
/text/sbasic/shared/03120402.xhp
Sun Microsystems, Inc.
Len function
Len Function
Returns the number of characters in a string, or the number of bytes that are required to store a variable.
Syntax:
Len (Text As String)
Return value:
Long
Parameters:
Text: Any string expression or a variable of another type.
Example:
Sub ExampleLen
Dim sText as String
sText = "Las Vegas"
MsgBox Len(sText) ' 9
End Sub