VBA/Excel/Access/Word/String Functions/StrComp

Материал из VB Эксперт
Версия от 12:47, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

StrComp() Returns the result of comparing two strings.

 
Sub strDemo13()
   Debug.Print StrComp("B", "C", vbTextCompare)
End Sub



Using the StrComp Function to Compare Apples to Apples

 
"StrComp(string1, string2 [, compare])(vbTextCompare) or binary comparison (vbBinaryCompare).
Sub strDemo()
    Dim Pet As String
    Pet = "dog"
    If StrComp(Pet, "dog", vbTextCompare) = True Then _
        MsgBox "We do not accept dogs."
End Sub