0

这可能是一个简单的,但我似乎无法找出问题所在:

if temp_array(1) = temp_string2 & temp_array(2) = "w" then
....
end if

这些值为:

temp_array(1) = "test1"

temp_string2 = "test2"

temp_array(2) = "w"

我收到突出显示条件比较的类型不匹配错误...

4

1 回答 1

3

&是字符串连接,不是逻辑and

if temp_array(1) = temp_string2 And temp_array(2) = "w" then 
于 2012-08-17T18:14:44.120 回答