StrComp Function

āļ…āļąāˇ” āļŊāļšāˇ”āļĢ⎔ ⎀⎐āļŊ⎊ āļ¯āˇ™āļšāļšāˇŠ ⎃⎃āļŗāˇ, ⎃⎐⎃āļŗāˇ“āļ¸āˇš āļ´āˇŠâ€āļģāļ­āˇ’āļĩāļŊāļē āļąāˇ’āļģ⎖āļ´āļĢāļē āļšāļģāļą āļąāˇ’āļ›āˇ’āļŊ āļ…āļœāļēāļšāˇŠ āļŊāļļāˇāļ¯āˇ™āļē⎒.

Syntax:


StrComp (string1 As String, string2 As String[, Compare As Integer]) As Integer

Parameters:

string1: Any string expression

string2: Any string expression

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.

Return value:

Integer

Error codes:

5 Invalid procedure call

Example:


Sub ExampleStrComp
Dim iVar As Single
Dim sVar As String
    iVar = 123.123
    sVar = Str$(iVar)
    MsgBox strcomp(sVar , Str$(iVar),1)
End Sub

Please support us!