在下面提供的代码中,我有一个测试数组。我想查找那些在 400 到 500 范围内但在 Test 数组 ( Ex: 410 - Although this value is in the range of 400 to 500, it is not found in the array
)中找不到set the value of it to 410|New-value
的值网页。
这是代码:
Test= Array("1|Name", "2|Place", "400|Animal", "420|Thing")
For Each x in Test
xSplit=Split(x,"|")
'Do Something'
Next
'Do Something'
有人可以帮我吗?