LibreOffice 24.8 Help
Vraća broj znakova u nizu, ili broj bajtova koji su potrebni za spremanje varijable.
Len (Text 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