阅读量:7
在VBA中判断两个字符串是否相等,可以使用StrComp
函数或直接使用=
运算符。以下是两种方法的示例:
- 使用
StrComp
函数:
Sub CompareStrings() Dim str1 As String Dim str2 As String str1 = "Hello" str2 = "hello" If StrComp(str1, str2, vbTextCompare) = 0 Then MsgBox "Strings are equal." Else MsgBox "Strings are not equal." End If End Sub
- 使用
=
运算符:
Sub CompareStrings() Dim str1 As String Dim str2 As String str1 = "Hello" str2 = "hello" If str1 = str2 Then MsgBox "Strings are equal." Else MsgBox "Strings are not equal." End If End Sub
注意:在使用StrComp
函数时,第三个参数vbTextCompare
表示忽略大小写进行比较。如果希望区分大小写,可以使用vbBinaryCompare
参数。