LibreOffice 7.3 Help
Compares two strings and returns an integer value that represents the result of the comparison.
StrComp (Text1 As String, Text2 As String[, Compare])
Vesels skaitlis
Teksts1: jebkura virknes izteiksme
Teksts2: jebkura virknes izteiksme
Compare: This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters.
Ja Teksts1 < Teksts2, funkcija atgriež -1
Ja Teksts1 = Teksts2, funkcija atgriež 0
Ja Teksts1 > Teksts2, funkcija atgriež 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