StrComp Function [Runtime]/text/sbasic/shared/03120403.xhpSun Microsystems, Inc.converted from old format - fpeStrComp functionStrComp Function [Runtime]Compares two strings and returns an integer value that represents the result of the comparison.Syntax:StrComp (Text1 As String, Text2 As String[, Compare])Return value:IntegerParameter:Text1: Any string expressionText2: 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.Return valueIf Text1 < Text2 the function returns -1If Text1 = Text2 the function returns 0If Text1 > Text2 the function returns 1Example:Sub ExampleStrCompDim iVar As SingleDim sVar As StringiVar = 123.123sVar = Str$(iVar)Msgbox strcomp(sVar , Str$(iVar),1)end sub