Axuda do LibreOffice 24.8
Devolve o número de caracteres dunha cadea ou o número de bytes necesarios para almacenar unha variábel.
Len (Texto As String)
Long
Text: Any string expression or a variable of another type.
Sub ExampleLen
Dim sText as String
sText = "Las Vegas"
MsgBox Len(sText) ' 9
End Sub