Vba设置不区分大小写
时间: 2024-05-29 18:09:58 浏览: 291
VBHOOK区分大小写代码
3星 · 编辑精心推荐
在VBA中,可以通过在代码中使用Option Compare Text语句来设置字符串比较时不区分大小写。例如:
Option Compare Text
Dim str1 As String, str2 As String
str1 = "Hello"
str2 = "hello"
If str1 = str2 Then
MsgBox "Strings are equal"
Else
MsgBox "Strings are not equal"
End If
在上述例子中,由于使用了Option Compare Text语句,即使str1和str2的大小写不同,它们也会被视为相等的字符串。
阅读全文