gpt4 book ai didi

arrays - 如何使用 VB 迭代字符串数组?

转载 作者:行者123 更新时间:2023-12-02 10:50:33 25 4
gpt4 key购买 nike

这是我到目前为止的代码:

Dim i As Integer
Dim stringArray() as String

stringArray = split("Hello|there", "|")

For i = 0 To stringArray.Length()
' Logic goes here
Next

VB6 似乎不喜欢我使用 stringAray.Length() 并给我一个编译错误消息,如 Invalid Qualifier,但是迭代的正确方法是什么字符串数组的每个元素?

最佳答案

ubound() 返回上限;

Dim i As Long
Dim stringArray(1) as String

stringArray(0) = "hello"
stringArray(1) = "world"

For i = 0 To ubound(stringArray)
msgbox(stringArray(i))
Next

关于arrays - 如何使用 VB 迭代字符串数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21259363/

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