gpt4 book ai didi

arrays - 数组的 VBScript 索引位置

转载 作者:行者123 更新时间:2023-12-04 23:05:09 25 4
gpt4 key购买 nike

希望这是一个简单的方法,但我似乎找不到任何引用。

我如何打印 地点 存储在数组中的东西,而不是其中的实际项目。

Array(0) = Dog
Array(1) = Cat
Array(2) = Fish

假设我搜索了数组并找到了 cat,我如何打印 cat 存储的位置,在这种情况下是索引号 (1)。

提前致谢。

最佳答案

数组的位置称为 index
如果你运行一个循环,

For i = LBound(Array) to UBound(Array)
if Array(i) = "Cat" then '--restrict to find index of particular item
MsgBox i '-- gives the location/index of Cat item
End if
next i
  • LBound : 是下界,数组的起始索引。首先。它可以为零或任何值,因为 VBA 提供了将默认数组基数更改为 0 或 1 的灵活性。
  • UBound : 是上限,数组的结束索引。最后。

  • 进一步阅读: LBound and Ubound conflicts in case of array which has been assigned by the Range .

    关于arrays - 数组的 VBScript 索引位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14214031/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com