Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはおそらく単純なものですが、何が問題なのかわかりません。
if temp_array(1) = temp_string2 & temp_array(2) = "w" then .... end if
値は次のとおりです。
temp_array(1) = "テスト 1"
temp_string2 = "テスト2"
temp_array(2) = "w"
条件付き比較を強調するタイプの不一致エラーが表示されます...
&は文字列連結であり、logical ではありませんand。
&
and
if temp_array(1) = temp_string2 And temp_array(2) = "w" then