在Javascript中,我们可以在Array代码中使用Array,或者使用像
这样的字符串的数组[2]
带号码的 ["str1"]
数组
.str1
或["str1"][2]["str3"]
是带字符串
的数组
.str1[2].str3
或/MarkLogic/rest-api/endpoints/config.xqy
是数组中的数组
我怎样才能在vb6中做到这一点?
答案 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