Len Function [Runtime] /text/sbasic/shared/03120402.xhp
Len function Len Function [Runtime] Returns the number of characters in a string.
Syntax: Len (Text As String) Return value: Long Parameters: Text: Any string expression. Example: Sub ExampleLen Dim sText as String sText = "Las Vegas" MsgBox Len(sText) REM Returns 9 End Sub