Len Function [Runtime]/text/sbasic/shared/03120402.xhpSun Microsystems, Inc.Len functionLen Function [Runtime]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:LongParameters:Text: Any string expression or a variable of another type.Example:Sub ExampleLenDim sText as String sText = "Las Vegas" MsgBox Len(sText) REM Returns 9End Sub