Len Function [Runtime]/text/sbasic/shared/03120402.xhpSun Microsystems, Inc.converted from old format - fpeLen functionLen Function [Runtime]Returns the number of characters in a string.Syntax:Len (Text As String)Return value:LongParameters:Text: Any string expression.Example:Sub ExampleLenDim sText as StringsText = "Las Vegas"MsgBox Len(sText) REM Returns 9End Sub