עזרה עבור LibreOffice 7.4
Compares two strings and returns an integer value that represents the result of the comparison.
StrComp (Text1 As String, Text2 As String[, Compare])
Integer
\
\
\
If Text1 < Text2 the function returns -1
If Text1 = Text2 the function returns 0
If Text1 > Text2 the function returns 1
Sub ExampleStrComp
Dim iVar As Single
Dim sVar As String
iVar = 123.123
sVar = Str$(iVar)
MsgBox strcomp(sVar , Str$(iVar),1)
End Sub