For Each mct2 As String In mc If DataTables("" & mct2 & "").find.lines("属性 = " & str & "") IsNot Nothing End If Next
额, 老师,这串该如何写?
For Each mct2 As String In mc for each n as row in datatables(“a”).datarows
for each m as string in n.lines("属性")
if n = str then
end if
next
Next
这么写太复杂了, 是否可以简化一下。
正确的做法,就是你1楼的写法。
也可以这样写,但有可能不正确匹配:
If DataTables("" & mct2 & "").find("属性 like \'%" & str & "%\'") IsNot Nothing
此主题相关图片如下:微信图片_20171103105354.png
但是,老师,这么写显示错误。不知道问题在哪里的说。
If DataTables("" & mct2 & "").find.lines("属性 = " & str & "") IsNot Nothing