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 Integer

அளவுருக்கள்:

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.

திரும்பும் மதிப்பு:

Integer

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:


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!