LibreOffice 24.8 Help
Returns the number of characters in a string, or the number of bytes that are required to store a variable.
Dim stext 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