Comparison Operators

Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0).

කාරක රීතිය:

Result = Expression1 { = | < | > | <= | >= } Expression2

පරාමිතීන්:

Result: Boolean expression that specifies the result of the comparison (True, or False)

Expression1, Expression2: ඔබට සම්බන්ධ කරීමට අවශ්‍ය ඕනැම සංඛ්‍යාත්මක ප්‍රකාශනයන්.

සැසැඳුම් මෙහෙයුම්කාරක

= : Equal to

< : වඩා අල්පතර

> : වඩා විශාලතර

<= : වඩා අල්පතර හෝ සමාන

>= : වඩා විශාලතර හෝ සමාන

<> : අසමාන

උදාහරණය:

Sub ExampleUnequal

Dim sFile As String

DIM sRoot As String REM ' Root directory for file in and output

    sRoot = "c:\"

    sFile = Dir$( sRoot ,22)

    If sFile <> "" Then

        Do

            MsgBox sFile

            sFile = Dir$

        Loop Until sFile = ""

    End If

End Sub