StrComp Function/text/sbasic/shared/03120403.xhpStrComp function
StrComp Function
Compares two strings and returns an integer value that represents the result of the comparison.StrComp (string1 As String, string2 As String[, Compare As Integer]) As Integerstring1: Any string expressionstring2: Any string expressionCompare: 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.IntegerIf string1 < string2 the function returns -1If string1 = string2 the function returns 0If string1 > string2 the function returns 1Sub ExampleStrCompDim iVar As SingleDim sVar As String iVar = 123.123 sVar = Str$(iVar) MsgBox strcomp(sVar , Str$(iVar),1)End Sub