VB6:数组中的数组和带字符串的数组代码

时间:2017-01-26 14:08:25

标签: arrays vb6

在Javascript中,我们可以在Array代码中使用Array,或者使用像

这样的字符串的数组
[2]
带号码的

["str1"]数组 .str1["str1"][2]["str3"]是带字符串
的数组 .str1[2].str3/MarkLogic/rest-api/endpoints/config.xqy是数组中的数组

我怎样才能在vb6中做到这一点?

1 个答案:

答案 0 :(得分:0)

Dim x() as Byte

x = "a byte array filled with a string"

或在VB6中我们有Mid语句(不要与mid函数混淆)。这允许写入字符串中的任何字符。

总的来说,您将字节数组视为字符串。

Private Sub Form_Load()
    Dim x() As Byte
    x = "David Warner is a great batsman"

    'Treating it as an array and using Chr to convert from a number to a character
    'Remember unicode is two byte per character usually
    MsgBox Chr(x(12))

    'Treating it as a string
    MsgBox Mid(x, 7, 1)

End Sub