LibreOffice 7.1 Help
Vraća broj znakova u nizu, ili broj bajtova koji su potrebni za spremanje varijable.
Len (Text As String)
Dugačko
Text: Any string expression or a variable of another type.
Sub ExampleLen
Dim sText as String
sText = "Las Vegas"
MsgBox Len(sText) REM Returns 9
End Sub