这可能很简单,但我似乎无法找出错误:
if temp_array(1) = temp_string2 & temp_array(2) = "w" then
....
end if
值为:
temp_array(1)=“test1”
temp_string2 =“test2”
temp_array(2)=“w”
我收到类型不匹配错误,突出显示条件比较...
答案 0 :(得分:3)
&
是字符串连接,不是逻辑and
。
if temp_array(1) = temp_string2 And temp_array(2) = "w" then